debian-mirror-gitlab/doc/api/projects.md

2280 lines
93 KiB
Markdown
Raw Normal View History

2020-06-23 00:09:42 +05:30
---
stage: Plan
group: Project Management
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/engineering/ux/technical-writing/#designated-technical-writers
---
2017-09-10 17:25:29 +05:30
# Projects API
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
## Project visibility level
2015-04-26 12:48:37 +05:30
2017-09-10 17:25:29 +05:30
Project in GitLab can be either private, internal or public.
This is determined by the `visibility` field in the project.
2015-04-26 12:48:37 +05:30
2017-09-10 17:25:29 +05:30
Values for the project visibility level are:
2015-04-26 12:48:37 +05:30
2019-03-02 22:35:43 +05:30
- `private`:
2015-04-26 12:48:37 +05:30
Project access must be granted explicitly for each user.
2019-03-02 22:35:43 +05:30
- `internal`:
2015-04-26 12:48:37 +05:30
The project can be cloned by any logged in user.
2019-03-02 22:35:43 +05:30
- `public`:
2019-09-30 21:07:59 +05:30
The project can be accessed without any authentication.
2015-04-26 12:48:37 +05:30
2018-05-09 12:01:36 +05:30
## Project merge method
There are currently three options for `merge_method` to choose from:
2019-03-02 22:35:43 +05:30
- `merge`:
2018-05-09 12:01:36 +05:30
A merge commit is created for every merge, and merging is allowed as long as there are no conflicts.
2019-03-02 22:35:43 +05:30
- `rebase_merge`:
2018-05-09 12:01:36 +05:30
A merge commit is created for every merge, but merging is only allowed if fast-forward merge is possible.
This way you could make sure that if this merge request would build, after merging to target branch it would also build.
2019-03-02 22:35:43 +05:30
- `ff`:
2018-05-09 12:01:36 +05:30
No merge commits are created and all merges are fast-forwarded, which means that merging is only allowed if the branch could be fast-forwarded.
2018-03-17 18:26:18 +05:30
## List all projects
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
Get a list of all visible projects across GitLab for the authenticated user.
2018-11-18 11:00:15 +05:30
When accessed without authentication, only public projects with "simple" fields are returned.
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
GET /projects
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2020-04-22 19:07:51 +05:30
| `archived` | boolean | no | Limit by archived status |
| `visibility` | string | no | Limit by visibility `public`, `internal`, or `private` |
| `order_by` | string | no | Return projects ordered by `id`, `name`, `path`, `created_at`, `updated_at`, or `last_activity_at` fields. Default is `created_at` |
| `sort` | string | no | Return projects sorted in `asc` or `desc` order. Default is `desc` |
| `search` | string | no | Return list of projects matching the search criteria |
| `search_namespaces` | boolean | no | Include ancestor namespaces when matching search criteria. Default is `false` |
| `simple` | boolean | no | Return only limited fields for each project. This is a no-op without authentication as then _only_ simple fields are returned. |
| `owned` | boolean | no | Limit by projects explicitly owned by the current user |
| `membership` | boolean | no | Limit by projects that the current user is a member of |
| `starred` | boolean | no | Limit by projects starred by the current user |
| `statistics` | boolean | no | Include project statistics |
| `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only) |
| `with_issues_enabled` | boolean | no | Limit by enabled issues feature |
| `with_merge_requests_enabled` | boolean | no | Limit by enabled merge requests feature |
| `with_programming_language` | string | no | Limit by projects which use the given programming language |
| `wiki_checksum_failed` | boolean | no | **(PREMIUM)** Limit projects where the wiki checksum calculation has failed ([Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/6137) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.2) |
| `repository_checksum_failed` | boolean | no | **(PREMIUM)** Limit projects where the repository checksum calculation has failed ([Introduced](https://gitlab.com/gitlab-org/gitlab/-/merge_requests/6137) in [GitLab Premium](https://about.gitlab.com/pricing/) 11.2) |
| `min_access_level` | integer | no | Limit by current user minimal [access level](members.md) |
| `id_after` | integer | no | Limit results to projects with IDs greater than the specified ID |
| `id_before` | integer | no | Limit results to projects with IDs less than the specified ID |
| `last_activity_after` | datetime | no | Limit results to projects with last_activity after specified time. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ |
| `last_activity_before` | datetime | no | Limit results to projects with last_activity before specified time. Format: ISO 8601 YYYY-MM-DDTHH:MM:SSZ |
2018-11-18 11:00:15 +05:30
2020-01-01 13:55:28 +05:30
NOTE: **Note:**
This endpoint supports [keyset pagination](README.md#keyset-based-pagination) for selected `order_by` options.
2018-11-18 11:00:15 +05:30
When `simple=true` or the user is unauthenticated this returns something like:
```json
[
{
"id": 4,
"description": null,
"default_branch": "master",
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-client.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-client.git",
"web_url": "http://example.com/diaspora/diaspora-client",
"readme_url": "http://example.com/diaspora/diaspora-client/blob/master/README.md",
"tag_list": [
"example",
"disapora client"
],
"name": "Diaspora Client",
"name_with_namespace": "Diaspora / Diaspora Client",
"path": "diaspora-client",
"path_with_namespace": "diaspora/diaspora-client",
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"forks_count": 0,
"avatar_url": "http://example.com/uploads/project/avatar/4/uploads/avatar.png",
"star_count": 0,
},
{
"id": 6,
"description": null,
"default_branch": "master",
...
```
When the user is authenticated and `simple` is not set this returns something like:
2017-09-10 17:25:29 +05:30
```json
[
{
"id": 4,
"description": null,
"default_branch": "master",
"visibility": "private",
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-client.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-client.git",
"web_url": "http://example.com/diaspora/diaspora-client",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-client/blob/master/README.md",
2017-09-10 17:25:29 +05:30
"tag_list": [
"example",
"disapora client"
],
"owner": {
"id": 3,
"name": "Diaspora",
"created_at": "2013-09-30T13:46:02Z"
},
"name": "Diaspora Client",
"name_with_namespace": "Diaspora / Diaspora Client",
"path": "diaspora-client",
"path_with_namespace": "diaspora/diaspora-client",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
"jobs_enabled": true,
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2017-09-10 17:25:29 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
"kind": "group",
"full_path": "diaspora"
},
"import_status": "none",
"archived": false,
"avatar_url": "http://example.com/uploads/project/avatar/4/uploads/avatar.png",
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
"runners_token": "b8547b1dc37721d05889db52fa2f02",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 50,
2017-09-10 17:25:29 +05:30
"public_jobs": true,
"shared_with_groups": [],
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-09-10 17:25:29 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2020-05-24 23:13:21 +05:30
"marked_for_deletion_at": "2020-04-03", // Deprecated and will be removed in API v5 in favor of marked_for_deletion_on
2020-04-22 19:07:51 +05:30
"marked_for_deletion_on": "2020-04-03",
2017-09-10 17:25:29 +05:30
"statistics": {
"commit_count": 37,
"storage_size": 1038090,
"repository_size": 1038090,
2019-09-04 21:01:54 +05:30
"wiki_size" : 0,
2017-09-10 17:25:29 +05:30
"lfs_objects_size": 0,
2019-09-30 21:07:59 +05:30
"job_artifacts_size": 0,
"packages_size": 0
2017-09-10 17:25:29 +05:30
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
},
},
{
"id": 6,
"description": null,
"default_branch": "master",
"visibility": "private",
"ssh_url_to_repo": "git@example.com:brightbox/puppet.git",
"http_url_to_repo": "http://example.com/brightbox/puppet.git",
"web_url": "http://example.com/brightbox/puppet",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/brightbox/puppet/blob/master/README.md",
2017-09-10 17:25:29 +05:30
"tag_list": [
"example",
"puppet"
],
"owner": {
"id": 4,
"name": "Brightbox",
"created_at": "2013-09-30T13:46:02Z"
},
"name": "Puppet",
"name_with_namespace": "Brightbox / Puppet",
"path": "puppet",
"path_with_namespace": "brightbox/puppet",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
"jobs_enabled": true,
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2017-09-10 17:25:29 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"creator_id": 3,
"namespace": {
"id": 4,
"name": "Brightbox",
"path": "brightbox",
"kind": "group",
"full_path": "brightbox"
},
"import_status": "none",
"import_error": null,
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
"archived": false,
"avatar_url": null,
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
"runners_token": "b8547b1dc37721d05889db52fa2f02",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 0,
2017-09-10 17:25:29 +05:30
"public_jobs": true,
"shared_with_groups": [],
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-09-10 17:25:29 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-01-01 13:55:28 +05:30
"auto_devops_enabled": true,
"auto_devops_deploy_strategy": "continuous",
"repository_storage": "default",
"approvals_before_merge": 0,
"mirror": false,
"mirror_user_id": 45,
"mirror_trigger_builds": false,
"only_mirror_protected_branches": false,
"mirror_overwrites_diverged_branches": false,
"external_authorization_classification_label": null,
"packages_enabled": true,
"service_desk_enabled": false,
"service_desk_address": null,
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-09-10 17:25:29 +05:30
"statistics": {
"commit_count": 12,
"storage_size": 2066080,
"repository_size": 2066080,
2019-09-04 21:01:54 +05:30
"wiki_size" : 0,
2017-09-10 17:25:29 +05:30
"lfs_objects_size": 0,
2019-09-30 21:07:59 +05:30
"job_artifacts_size": 0,
"packages_size": 0
2017-09-10 17:25:29 +05:30
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
}
]
```
2020-04-22 19:07:51 +05:30
NOTE: **Note:**
2020-05-24 23:13:21 +05:30
For users on GitLab [Silver, Premium, or higher](https://about.gitlab.com/pricing/) the `marked_for_deletion_at` attribute has been deprecated and will be removed in API v5 in favor of the `marked_for_deletion_on` attribute.
2020-04-22 19:07:51 +05:30
2019-09-30 21:07:59 +05:30
Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) will also see
the `approvals_before_merge` parameter:
```json
[
{
"id": 4,
"description": null,
"approvals_before_merge": 0,
...
}
]
```
2018-03-17 18:26:18 +05:30
You can filter by [custom attributes](custom_attributes.md) with:
2020-04-08 14:13:33 +05:30
```plaintext
2018-03-17 18:26:18 +05:30
GET /projects?custom_attributes[key]=value&custom_attributes[other_key]=other_value
```
2020-03-13 15:44:24 +05:30
### Pagination limits
2020-05-05 14:28:15 +05:30
From GitLab 13.0, [offset-based pagination](README.md#offset-based-pagination) will be
2020-06-23 00:09:42 +05:30
[limited to 50,000 records](https://gitlab.com/gitlab-org/gitlab/-/issues/34565).
2020-03-13 15:44:24 +05:30
[Keyset pagination](README.md#keyset-based-pagination) will be required to retrieve projects
beyond this limit.
Note that keyset pagination only supports `order_by=id`. Other sorting options are not available.
2018-03-17 18:26:18 +05:30
## List user projects
2017-09-10 17:25:29 +05:30
2018-11-20 20:47:30 +05:30
Get a list of visible projects owned by the given user. When accessed without authentication, only public projects are returned.
2017-09-10 17:25:29 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-09-10 17:25:29 +05:30
GET /users/:user_id/projects
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `user_id` | string | yes | The ID or username of the user |
| `archived` | boolean | no | Limit by archived status |
| `visibility` | string | no | Limit by visibility `public`, `internal`, or `private` |
| `order_by` | string | no | Return projects ordered by `id`, `name`, `path`, `created_at`, `updated_at`, or `last_activity_at` fields. Default is `created_at` |
| `sort` | string | no | Return projects sorted in `asc` or `desc` order. Default is `desc` |
| `search` | string | no | Return list of projects matching the search criteria |
2018-11-18 11:00:15 +05:30
| `simple` | boolean | no | Return only limited fields for each project. This is a no-op without authentication as then _only_ simple fields are returned. |
| `owned` | boolean | no | Limit by projects explicitly owned by the current user |
2017-09-10 17:25:29 +05:30
| `membership` | boolean | no | Limit by projects that the current user is a member of |
| `starred` | boolean | no | Limit by projects starred by the current user |
| `statistics` | boolean | no | Include project statistics |
2018-03-27 19:54:05 +05:30
| `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only) |
2017-09-10 17:25:29 +05:30
| `with_issues_enabled` | boolean | no | Limit by enabled issues feature |
| `with_merge_requests_enabled` | boolean | no | Limit by enabled merge requests feature |
2019-03-02 22:35:43 +05:30
| `with_programming_language` | string | no | Limit by projects which use the given programming language |
2018-11-18 11:00:15 +05:30
| `min_access_level` | integer | no | Limit by current user minimal [access level](members.md) |
2019-12-26 22:10:19 +05:30
| `id_after` | integer | no | Limit results to projects with IDs greater than the specified ID |
| `id_before` | integer | no | Limit results to projects with IDs less than the specified ID |
2014-09-02 18:07:02 +05:30
2020-01-01 13:55:28 +05:30
NOTE: **Note:**
This endpoint supports [keyset pagination](README.md#keyset-based-pagination) for selected `order_by` options.
2014-09-02 18:07:02 +05:30
```json
[
{
"id": 4,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "private",
2014-09-02 18:07:02 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-client.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-client.git",
"web_url": "http://example.com/diaspora/diaspora-client",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-client/blob/master/README.md",
2015-04-26 12:48:37 +05:30
"tag_list": [
"example",
"disapora client"
],
2014-09-02 18:07:02 +05:30
"owner": {
"id": 3,
"name": "Diaspora",
2016-08-24 12:49:21 +05:30
"created_at": "2013-09-30T13:46:02Z"
2014-09-02 18:07:02 +05:30
},
"name": "Diaspora Client",
"name_with_namespace": "Diaspora / Diaspora Client",
"path": "diaspora-client",
"path_with_namespace": "diaspora/diaspora-client",
"issues_enabled": true,
2015-12-23 02:04:40 +05:30
"open_issues_count": 1,
2014-09-02 18:07:02 +05:30
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2014-09-02 18:07:02 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2015-04-26 12:48:37 +05:30
"creator_id": 3,
2014-09-02 18:07:02 +05:30
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "diaspora"
2014-09-02 18:07:02 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
2015-04-26 12:48:37 +05:30
"archived": false,
"avatar_url": "http://example.com/uploads/project/avatar/4/uploads/avatar.png",
"shared_runners_enabled": true,
"forks_count": 0,
2016-04-02 18:10:28 +05:30
"star_count": 0,
"runners_token": "b8547b1dc37721d05889db52fa2f02",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 50,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-08-17 22:00:37 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2020-05-24 23:13:21 +05:30
"marked_for_deletion_at": "2020-04-03", // Deprecated and will be removed in API v5 in favor of marked_for_deletion_on
2020-04-22 19:07:51 +05:30
"marked_for_deletion_on": "2020-04-03",
2017-08-17 22:00:37 +05:30
"statistics": {
"commit_count": 37,
"storage_size": 1038090,
"repository_size": 1038090,
2019-09-04 21:01:54 +05:30
"wiki_size" : 0,
2017-08-17 22:00:37 +05:30
"lfs_objects_size": 0,
2019-09-30 21:07:59 +05:30
"job_artifacts_size": 0,
"packages_size": 0
2017-09-10 17:25:29 +05:30
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
2017-08-17 22:00:37 +05:30
}
2014-09-02 18:07:02 +05:30
},
{
"id": 6,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "private",
2014-09-02 18:07:02 +05:30
"ssh_url_to_repo": "git@example.com:brightbox/puppet.git",
"http_url_to_repo": "http://example.com/brightbox/puppet.git",
"web_url": "http://example.com/brightbox/puppet",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/brightbox/puppet/blob/master/README.md",
2015-04-26 12:48:37 +05:30
"tag_list": [
"example",
"puppet"
],
2014-09-02 18:07:02 +05:30
"owner": {
"id": 4,
"name": "Brightbox",
"created_at": "2013-09-30T13:46:02Z"
},
"name": "Puppet",
"name_with_namespace": "Brightbox / Puppet",
"path": "puppet",
"path_with_namespace": "brightbox/puppet",
"issues_enabled": true,
2015-12-23 02:04:40 +05:30
"open_issues_count": 1,
2014-09-02 18:07:02 +05:30
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2014-09-02 18:07:02 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
2014-09-02 18:07:02 +05:30
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2015-04-26 12:48:37 +05:30
"creator_id": 3,
2014-09-02 18:07:02 +05:30
"namespace": {
"id": 4,
"name": "Brightbox",
"path": "brightbox",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "brightbox"
2014-09-02 18:07:02 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
"import_error": null,
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
2015-04-26 12:48:37 +05:30
"archived": false,
"avatar_url": null,
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
2016-04-02 18:10:28 +05:30
"runners_token": "b8547b1dc37721d05889db52fa2f02",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 0,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-08-17 22:00:37 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-01-01 13:55:28 +05:30
"auto_devops_enabled": true,
"auto_devops_deploy_strategy": "continuous",
"repository_storage": "default",
"approvals_before_merge": 0,
"mirror": false,
"mirror_user_id": 45,
"mirror_trigger_builds": false,
"only_mirror_protected_branches": false,
"mirror_overwrites_diverged_branches": false,
"external_authorization_classification_label": null,
"packages_enabled": true,
"service_desk_enabled": false,
"service_desk_address": null,
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-08-17 22:00:37 +05:30
"statistics": {
"commit_count": 12,
"storage_size": 2066080,
"repository_size": 2066080,
2019-09-04 21:01:54 +05:30
"wiki_size" : 0,
2017-08-17 22:00:37 +05:30
"lfs_objects_size": 0,
2019-09-30 21:07:59 +05:30
"job_artifacts_size": 0,
"packages_size": 0
2017-09-10 17:25:29 +05:30
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
2017-08-17 22:00:37 +05:30
}
2016-11-03 12:29:30 +05:30
}
]
```
2019-10-12 21:52:04 +05:30
## List projects starred by a user
Get a list of visible projects owned by the given user. When accessed without authentication, only public projects are returned.
2020-04-08 14:13:33 +05:30
```plaintext
2019-10-12 21:52:04 +05:30
GET /users/:user_id/starred_projects
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `user_id` | string | yes | The ID or username of the user. |
| `archived` | boolean | no | Limit by archived status. |
| `visibility` | string | no | Limit by visibility `public`, `internal`, or `private`. |
| `order_by` | string | no | Return projects ordered by `id`, `name`, `path`, `created_at`, `updated_at`, or `last_activity_at` fields. Default is `created_at`. |
| `sort` | string | no | Return projects sorted in `asc` or `desc` order. Default is `desc`. |
| `search` | string | no | Return list of projects matching the search criteria. |
| `simple` | boolean | no | Return only limited fields for each project. This is a no-op without authentication as then _only_ simple fields are returned.. |
| `owned` | boolean | no | Limit by projects explicitly owned by the current user. |
| `membership` | boolean | no | Limit by projects that the current user is a member of. |
| `starred` | boolean | no | Limit by projects starred by the current user. |
| `statistics` | boolean | no | Include project statistics. |
| `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only). |
| `with_issues_enabled` | boolean | no | Limit by enabled issues feature. |
| `with_merge_requests_enabled` | boolean | no | Limit by enabled merge requests feature. |
| `min_access_level` | integer | no | Limit by current user minimal [access level](members.md). |
2020-03-13 15:44:24 +05:30
```shell
2019-10-12 21:52:04 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/users/5/starred_projects"
```
Example response:
```json
[
{
"id": 4,
"description": null,
"default_branch": "master",
"visibility": "private",
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-client.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-client.git",
"web_url": "http://example.com/diaspora/diaspora-client",
"readme_url": "http://example.com/diaspora/diaspora-client/blob/master/README.md",
"tag_list": [
"example",
"disapora client"
],
"owner": {
"id": 3,
"name": "Diaspora",
"created_at": "2013-09-30T13:46:02Z"
},
"name": "Diaspora Client",
"name_with_namespace": "Diaspora / Diaspora Client",
"path": "diaspora-client",
"path_with_namespace": "diaspora/diaspora-client",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
"jobs_enabled": true,
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2019-10-12 21:52:04 +05:30
"resolve_outdated_diff_discussions": false,
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
"kind": "group",
"full_path": "diaspora"
},
"import_status": "none",
"archived": false,
"avatar_url": "http://example.com/uploads/project/avatar/4/uploads/avatar.png",
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
"runners_token": "b8547b1dc37721d05889db52fa2f02",
"public_jobs": true,
"shared_with_groups": [],
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2019-10-12 21:52:04 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2019-10-12 21:52:04 +05:30
"request_access_enabled": false,
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2019-10-12 21:52:04 +05:30
"statistics": {
"commit_count": 37,
"storage_size": 1038090,
"repository_size": 1038090,
"lfs_objects_size": 0,
"job_artifacts_size": 0
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
},
{
"id": 6,
"description": null,
"default_branch": "master",
"visibility": "private",
"ssh_url_to_repo": "git@example.com:brightbox/puppet.git",
"http_url_to_repo": "http://example.com/brightbox/puppet.git",
"web_url": "http://example.com/brightbox/puppet",
"readme_url": "http://example.com/brightbox/puppet/blob/master/README.md",
"tag_list": [
"example",
"puppet"
],
"owner": {
"id": 4,
"name": "Brightbox",
"created_at": "2013-09-30T13:46:02Z"
},
"name": "Puppet",
"name_with_namespace": "Brightbox / Puppet",
"path": "puppet",
"path_with_namespace": "brightbox/puppet",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
"jobs_enabled": true,
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2019-10-12 21:52:04 +05:30
"resolve_outdated_diff_discussions": false,
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"creator_id": 3,
"namespace": {
"id": 4,
"name": "Brightbox",
"path": "brightbox",
"kind": "group",
"full_path": "brightbox"
},
"import_status": "none",
"import_error": null,
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
"archived": false,
"avatar_url": null,
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
"runners_token": "b8547b1dc37721d05889db52fa2f02",
"public_jobs": true,
"shared_with_groups": [],
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2019-10-12 21:52:04 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2019-10-12 21:52:04 +05:30
"request_access_enabled": false,
"merge_method": "merge",
2020-01-01 13:55:28 +05:30
"auto_devops_enabled": true,
"auto_devops_deploy_strategy": "continuous",
"repository_storage": "default",
"approvals_before_merge": 0,
"mirror": false,
"mirror_user_id": 45,
"mirror_trigger_builds": false,
"only_mirror_protected_branches": false,
"mirror_overwrites_diverged_branches": false,
"external_authorization_classification_label": null,
"packages_enabled": true,
"service_desk_enabled": false,
"service_desk_address": null,
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2019-10-12 21:52:04 +05:30
"statistics": {
"commit_count": 12,
"storage_size": 2066080,
"repository_size": 2066080,
"lfs_objects_size": 0,
"job_artifacts_size": 0
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
}
]
```
2018-03-17 18:26:18 +05:30
## Get single project
2014-09-02 18:07:02 +05:30
2017-08-17 22:00:37 +05:30
Get a specific project. This endpoint can be accessed without authentication if
the project is publicly accessible.
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
GET /projects/:id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `statistics` | boolean | no | Include project statistics |
2018-12-13 13:39:08 +05:30
| `license` | boolean | no | Include project license data |
2018-03-27 19:54:05 +05:30
| `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only) |
2014-09-02 18:07:02 +05:30
```json
{
"id": 3,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "private",
2014-09-02 18:07:02 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2015-04-26 12:48:37 +05:30
"tag_list": [
"example",
"disapora project"
],
2014-09-02 18:07:02 +05:30
"owner": {
"id": 3,
"name": "Diaspora",
2016-08-24 12:49:21 +05:30
"created_at": "2013-09-30T13:46:02Z"
2014-09-02 18:07:02 +05:30
},
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
2015-12-23 02:04:40 +05:30
"open_issues_count": 1,
2014-09-02 18:07:02 +05:30
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2014-09-02 18:07:02 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
2020-03-13 15:44:24 +05:30
"container_expiration_policy": {
"cadence": "7d",
"enabled": false,
"keep_n": null,
"older_than": null,
2020-05-24 23:13:21 +05:30
"name_regex": null, // to be deprecated in GitLab 13.0 in favor of `name_regex_delete`
"name_regex_delete": null,
"name_regex_keep": null,
2020-03-13 15:44:24 +05:30
"next_run_at": "2020-01-07T21:42:58.658Z"
},
2016-08-24 12:49:21 +05:30
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2015-04-26 12:48:37 +05:30
"creator_id": 3,
2014-09-02 18:07:02 +05:30
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
2019-07-31 22:56:46 +05:30
"full_path": "diaspora",
"avatar_url": "http://localhost:3000/uploads/group/avatar/3/foo.jpg",
"web_url": "http://localhost:3000/groups/diaspora"
2014-09-02 18:07:02 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
"import_error": null,
2014-09-02 18:07:02 +05:30
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
2015-04-26 12:48:37 +05:30
"archived": false,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
2018-12-13 13:39:08 +05:30
"license_url": "http://example.com/diaspora/diaspora-client/blob/master/LICENSE",
"license": {
"key": "lgpl-3.0",
"name": "GNU Lesser General Public License v3.0",
"nickname": "GNU LGPLv3",
"html_url": "http://choosealicense.com/licenses/lgpl-3.0/",
"source_url": "http://www.gnu.org/licenses/lgpl-3.0.txt"
},
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
2016-08-24 12:49:21 +05:30
"runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 50,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-08-24 12:49:21 +05:30
"shared_with_groups": [
{
"group_id": 4,
"group_name": "Twitter",
2019-03-02 22:35:43 +05:30
"group_full_path": "twitter",
2016-08-24 12:49:21 +05:30
"group_access_level": 30
},
{
"group_id": 3,
"group_name": "Gitlab Org",
2019-03-02 22:35:43 +05:30
"group_full_path": "gitlab-org",
2016-08-24 12:49:21 +05:30
"group_access_level": 10
}
2016-09-29 09:46:39 +05:30
],
2019-09-30 21:07:59 +05:30
"repository_storage": "default",
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"printing_merge_requests_link_enabled": true,
2017-08-17 22:00:37 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-01-01 13:55:28 +05:30
"auto_devops_enabled": true,
"auto_devops_deploy_strategy": "continuous",
"repository_storage": "default",
"approvals_before_merge": 0,
"mirror": false,
"mirror_user_id": 45,
"mirror_trigger_builds": false,
"only_mirror_protected_branches": false,
"mirror_overwrites_diverged_branches": false,
"external_authorization_classification_label": null,
"packages_enabled": true,
"service_desk_enabled": false,
"service_desk_address": null,
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2020-05-24 23:13:21 +05:30
"marked_for_deletion_at": "2020-04-03", // Deprecated and will be removed in API v5 in favor of marked_for_deletion_on
2020-04-22 19:07:51 +05:30
"marked_for_deletion_on": "2020-04-03",
2017-08-17 22:00:37 +05:30
"statistics": {
"commit_count": 37,
"storage_size": 1038090,
"repository_size": 1038090,
2019-09-04 21:01:54 +05:30
"wiki_size" : 0,
2017-08-17 22:00:37 +05:30
"lfs_objects_size": 0,
2019-09-30 21:07:59 +05:30
"job_artifacts_size": 0,
"packages_size": 0
2017-09-10 17:25:29 +05:30
},
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
2017-08-17 22:00:37 +05:30
}
2014-09-02 18:07:02 +05:30
}
```
2019-09-30 21:07:59 +05:30
Users on GitLab [Starter, Bronze, or higher](https://about.gitlab.com/pricing/) will also see
the `approvals_before_merge` parameter:
```json
{
"id": 3,
"description": null,
"approvals_before_merge": 0,
...
}
```
2020-05-24 23:13:21 +05:30
**Note**: The `web_url` and `avatar_url` attributes on `namespace` were [introduced](https://gitlab.com/gitlab-org/gitlab-foss/-/merge_requests/27427) in GitLab 11.11.
2019-07-31 22:56:46 +05:30
2018-11-08 19:23:39 +05:30
If the project is a fork, and you provide a valid token to authenticate, the
`forked_from_project` field will appear in the response.
```json
{
"id":3,
...
"forked_from_project":{
"id":13083,
"description":"GitLab Community Edition",
"name":"GitLab Community Edition",
"name_with_namespace":"GitLab.org / GitLab Community Edition",
2019-12-21 20:55:43 +05:30
"path":"gitlab-foss",
"path_with_namespace":"gitlab-org/gitlab-foss",
2018-11-08 19:23:39 +05:30
"created_at":"2013-09-26T06:02:36.000Z",
"default_branch":"master",
"tag_list":[],
2019-12-21 20:55:43 +05:30
"ssh_url_to_repo":"git@gitlab.com:gitlab-org/gitlab-foss.git",
2019-12-04 20:38:33 +05:30
"http_url_to_repo":"https://gitlab.com/gitlab-org/gitlab-foss.git",
"web_url":"https://gitlab.com/gitlab-org/gitlab-foss",
2018-11-08 19:23:39 +05:30
"avatar_url":"https://assets.gitlab-static.net/uploads/-/system/project/avatar/13083/logo-extra-whitespace.png",
2019-12-21 20:55:43 +05:30
"license_url": "https://gitlab.com/gitlab-org/gitlab/blob/master/LICENSE",
2018-12-13 13:39:08 +05:30
"license": {
"key": "mit",
"name": "MIT License",
"nickname": null,
"html_url": "http://choosealicense.com/licenses/mit/",
"source_url": "https://opensource.org/licenses/MIT",
},
2018-11-08 19:23:39 +05:30
"star_count":3812,
"forks_count":3561,
2018-11-18 11:00:15 +05:30
"last_activity_at":"2018-01-02T11:40:26.570Z",
"namespace": {
"id": 72,
"name": "GitLab.org",
"path": "gitlab-org",
"kind": "group",
"full_path": "gitlab-org",
"parent_id": null
}
2018-11-08 19:23:39 +05:30
}
...
}
```
2017-08-17 22:00:37 +05:30
## Get project users
Get the users list of a project.
2020-04-08 14:13:33 +05:30
```plaintext
2018-03-17 18:26:18 +05:30
GET /projects/:id/users
```
2017-08-17 22:00:37 +05:30
2019-12-04 20:38:33 +05:30
| Attribute | Type | Required | Description |
| ------------ | ------------- | -------- | ----------- |
2020-04-22 19:07:51 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2019-12-04 20:38:33 +05:30
| `search` | string | no | Search for specific users |
| `skip_users` | integer array | no | Filter out users with the specified IDs |
2017-08-17 22:00:37 +05:30
```json
[
{
"id": 1,
"username": "john_smith",
"name": "John Smith",
"state": "active",
"avatar_url": "http://localhost:3000/uploads/user/avatar/1/cd8.jpeg",
"web_url": "http://localhost:3000/john_smith"
},
{
"id": 2,
"username": "jack_smith",
"name": "Jack Smith",
"state": "blocked",
"avatar_url": "http://gravatar.com/../e32131cd8.jpeg",
"web_url": "http://localhost:3000/jack_smith"
}
]
```
2018-03-17 18:26:18 +05:30
## Get project events
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
Please refer to the [Events API documentation](events.md#list-a-projects-visible-events).
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
## Create project
2014-09-02 18:07:02 +05:30
Creates a new project owned by the authenticated user.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
POST /projects
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `name` | string | yes if path is not provided | The name of the new project. Equals path if not provided. |
| `path` | string | yes if name is not provided | Repository name for new project. Generated based on name if not provided (generated lowercased with dashes). |
2016-11-03 12:29:30 +05:30
| `namespace_id` | integer | no | Namespace for the new project (defaults to the current user's namespace) |
2019-09-30 21:07:59 +05:30
| `default_branch` | string | no | `master` by default |
2016-11-03 12:29:30 +05:30
| `description` | string | no | Short project description |
2019-09-30 21:07:59 +05:30
| `issues_enabled` | boolean | no | (deprecated) Enable issues for this project. Use `issues_access_level` instead |
| `merge_requests_enabled` | boolean | no | (deprecated) Enable merge requests for this project. Use `merge_requests_access_level` instead |
| `jobs_enabled` | boolean | no | (deprecated) Enable jobs for this project. Use `builds_access_level` instead |
| `wiki_enabled` | boolean | no | (deprecated) Enable wiki for this project. Use `wiki_access_level` instead |
| `snippets_enabled` | boolean | no | (deprecated) Enable snippets for this project. Use `snippets_access_level` instead |
| `issues_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `repository_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `merge_requests_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-04-22 19:07:51 +05:30
| `forking_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2019-09-30 21:07:59 +05:30
| `builds_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `wiki_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `snippets_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-03-13 15:44:24 +05:30
| `pages_access_level` | string | no | One of `disabled`, `private`, `enabled` or `public` |
| `emails_disabled` | boolean | no | Disable email notifications |
2020-05-24 23:13:21 +05:30
| `show_default_award_emojis` | boolean | no | Show default award emojis |
2018-03-17 18:26:18 +05:30
| `resolve_outdated_diff_discussions` | boolean | no | Automatically resolve merge request diffs discussions on lines changed with a push |
2016-11-03 12:29:30 +05:30
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
2020-05-24 23:13:21 +05:30
| `container_expiration_policy_attributes` | hash | no | Update the image expiration policy for this project. Accepts: `cadence` (string), `keep_n` (string), `older_than` (string), `name_regex` (string), `name_regex_delete` (string), `name_regex_keep` (string), `enabled` (boolean) |
2016-11-03 12:29:30 +05:30
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
2017-09-10 17:25:29 +05:30
| `visibility` | string | no | See [project visibility level](#project-visibility-level) |
2016-11-03 12:29:30 +05:30
| `import_url` | string | no | URL to import repository from |
2019-02-15 15:39:39 +05:30
| `public_builds` | boolean | no | If `true`, jobs can be viewed by non-project-members |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
2020-06-23 00:09:42 +05:30
| `allow_merge_on_skipped_pipeline` | boolean | no | Set whether or not merge requests can be merged with skipped jobs |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
2019-09-30 21:07:59 +05:30
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
2020-03-13 15:44:24 +05:30
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
2019-12-26 22:10:19 +05:30
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
2016-11-03 12:29:30 +05:30
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
2017-09-10 17:25:29 +05:30
| `tag_list` | array | no | The list of tags for a project; put array of tags, that should be finally assigned to a project |
| `avatar` | mixed | no | Image file for avatar of the project |
| `printing_merge_request_link_enabled` | boolean | no | Show link to create/view merge request when pushing from the command line |
2019-09-30 21:07:59 +05:30
| `build_git_strategy` | string | no | The Git strategy. Defaults to `fetch` |
| `build_timeout` | integer | no | The maximum amount of time in minutes that a job is able run (in seconds) |
| `auto_cancel_pending_pipelines` | string | no | Auto-cancel pending pipelines (Note: this is not a boolean, but enabled/disabled |
| `build_coverage_regex` | string | no | Test coverage parsing |
2017-09-10 17:25:29 +05:30
| `ci_config_path` | string | no | The path to CI config file |
2019-09-30 21:07:59 +05:30
| `auto_devops_enabled` | boolean | no | Enable Auto DevOps for this project |
| `auto_devops_deploy_strategy` | string | no | Auto Deploy strategy (`continuous`, `manual` or `timed_incremental`) |
2020-04-08 14:13:33 +05:30
| `repository_storage` | string | no | Which storage shard the repository is on. Available only to admins |
2019-09-30 21:07:59 +05:30
| `approvals_before_merge` | integer | no | **(STARTER)** How many approvers should approve merge requests by default |
2019-12-21 20:55:43 +05:30
| `external_authorization_classification_label` | string | no | **(PREMIUM)** The classification label for the project |
2019-09-30 21:07:59 +05:30
| `mirror` | boolean | no | **(STARTER)** Enables pull mirroring in a project |
| `mirror_trigger_builds` | boolean | no | **(STARTER)** Pull mirroring triggers builds |
2018-12-05 23:21:45 +05:30
| `initialize_with_readme` | boolean | no | `false` by default |
2019-12-21 20:55:43 +05:30
| `template_name` | string | no | When used without `use_custom_template`, name of a [built-in project template](../gitlab-basics/create-project.md#built-in-templates). When used with `use_custom_template`, name of a custom project template |
2019-12-26 22:10:19 +05:30
| `template_project_id` | integer | no | **(PREMIUM)** When used with `use_custom_template`, project ID of a custom project template. This is preferable to using `template_name` since `template_name` may be ambiguous. |
2019-12-21 20:55:43 +05:30
| `use_custom_template` | boolean | no | **(PREMIUM)** Use either custom [instance](../user/admin_area/custom_project_templates.md) or [group](../user/group/custom_project_templates.md) (with `group_with_project_templates_id`) project template |
| `group_with_project_templates_id` | integer | no | **(PREMIUM)** For group-level custom templates, specifies ID of group from which all the custom project templates are sourced. Leave empty for instance-level templates. Requires `use_custom_template` to be true |
2020-01-01 13:55:28 +05:30
| `packages_enabled` | boolean | no | **(PREMIUM ONLY)** Enable or disable packages repository feature |
2014-09-02 18:07:02 +05:30
2019-09-30 21:07:59 +05:30
NOTE: **Note:** If your HTTP repository is not publicly accessible,
add authentication information to the URL: `https://username:password@gitlab.company.com/group/project.git`
where `password` is a public access key with the `api` scope enabled.
2018-03-17 18:26:18 +05:30
## Create project for user
2014-09-02 18:07:02 +05:30
Creates a new project owned by the specified user. Available only for admins.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
POST /projects/user/:user_id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `user_id` | integer | yes | The user ID of the project owner |
| `name` | string | yes | The name of the new project |
| `path` | string | no | Custom repository name for new project. By default generated based on name |
| `namespace_id` | integer | no | Namespace for the new project (defaults to the current user's namespace) |
| `description` | string | no | Short project description |
2019-09-30 21:07:59 +05:30
| `issues_enabled` | boolean | no | (deprecated) Enable issues for this project. Use `issues_access_level` instead |
| `merge_requests_enabled` | boolean | no | (deprecated) Enable merge requests for this project. Use `merge_requests_access_level` instead |
| `jobs_enabled` | boolean | no | (deprecated) Enable jobs for this project. Use `builds_access_level` instead |
| `wiki_enabled` | boolean | no | (deprecated) Enable wiki for this project. Use `wiki_access_level` instead |
| `snippets_enabled` | boolean | no | (deprecated) Enable snippets for this project. Use `snippets_access_level` instead |
| `issues_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `repository_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `merge_requests_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-04-22 19:07:51 +05:30
| `forking_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2019-09-30 21:07:59 +05:30
| `builds_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `wiki_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `snippets_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-03-13 15:44:24 +05:30
| `pages_access_level` | string | no | One of `disabled`, `private`, `enabled` or `public` |
| `emails_disabled` | boolean | no | Disable email notifications |
2020-05-24 23:13:21 +05:30
| `show_default_award_emojis` | boolean | no | Show default award emojis |
2018-03-17 18:26:18 +05:30
| `resolve_outdated_diff_discussions` | boolean | no | Automatically resolve merge request diffs discussions on lines changed with a push |
2016-11-03 12:29:30 +05:30
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
2017-08-17 22:00:37 +05:30
| `visibility` | string | no | See [project visibility level](#project-visibility-level) |
2016-11-03 12:29:30 +05:30
| `import_url` | string | no | URL to import repository from |
2019-02-15 15:39:39 +05:30
| `public_builds` | boolean | no | If `true`, jobs can be viewed by non-project-members |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
2020-06-23 00:09:42 +05:30
| `allow_merge_on_skipped_pipeline` | boolean | no | Set whether or not merge requests can be merged with skipped jobs |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
2019-09-30 21:07:59 +05:30
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
2020-03-13 15:44:24 +05:30
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
| `suggestion_commit_message` | string | no | The commit message used to apply merge request suggestions |
2019-12-26 22:10:19 +05:30
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
2016-11-03 12:29:30 +05:30
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
2017-09-10 17:25:29 +05:30
| `tag_list` | array | no | The list of tags for a project; put array of tags, that should be finally assigned to a project |
| `avatar` | mixed | no | Image file for avatar of the project |
| `printing_merge_request_link_enabled` | boolean | no | Show link to create/view merge request when pushing from the command line |
2019-09-30 21:07:59 +05:30
| `build_git_strategy` | string | no | The Git strategy. Defaults to `fetch` |
| `build_timeout` | integer | no | The maximum amount of time in minutes that a job is able run (in seconds) |
| `auto_cancel_pending_pipelines` | string | no | Auto-cancel pending pipelines (Note: this is not a boolean, but enabled/disabled |
| `build_coverage_regex` | string | no | Test coverage parsing |
2017-09-10 17:25:29 +05:30
| `ci_config_path` | string | no | The path to CI config file |
2019-09-30 21:07:59 +05:30
| `auto_devops_enabled` | boolean | no | Enable Auto DevOps for this project |
| `auto_devops_deploy_strategy` | string | no | Auto Deploy strategy (`continuous`, `manual` or `timed_incremental`) |
2020-04-08 14:13:33 +05:30
| `repository_storage` | string | no | Which storage shard the repository is on. Available only to admins |
2019-09-30 21:07:59 +05:30
| `approvals_before_merge` | integer | no | **(STARTER)** How many approvers should approve merge requests by default |
| `external_authorization_classification_label` | string | no | **(PREMIUM)** The classification label for the project |
| `mirror` | boolean | no | **(STARTER)** Enables pull mirroring in a project |
| `mirror_trigger_builds` | boolean | no | **(STARTER)** Pull mirroring triggers builds |
2019-12-21 20:55:43 +05:30
| `initialize_with_readme` | boolean | no | `false` by default |
2019-12-04 20:38:33 +05:30
| `template_name` | string | no | When used without `use_custom_template`, name of a [built-in project template](../gitlab-basics/create-project.md#built-in-templates). When used with `use_custom_template`, name of a custom project template |
| `use_custom_template` | boolean | no | **(PREMIUM)** Use either custom [instance](../user/admin_area/custom_project_templates.md) or [group](../user/group/custom_project_templates.md) (with `group_with_project_templates_id`) project template |
| `group_with_project_templates_id` | integer | no | **(PREMIUM)** For group-level custom templates, specifies ID of group from which all the custom project templates are sourced. Leave empty for instance-level templates. Requires `use_custom_template` to be true |
2020-01-01 13:55:28 +05:30
| `packages_enabled` | boolean | no | **(PREMIUM ONLY)** Enable or disable packages repository feature |
2019-09-30 21:07:59 +05:30
NOTE: **Note:** If your HTTP repository is not publicly accessible,
add authentication information to the URL: `https://username:password@gitlab.company.com/group/project.git`
where `password` is a public access key with the `api` scope enabled.
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
## Edit project
2015-04-26 12:48:37 +05:30
2017-08-17 22:00:37 +05:30
Updates an existing project.
2015-04-26 12:48:37 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2015-04-26 12:48:37 +05:30
PUT /projects/:id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2018-11-20 20:47:30 +05:30
| `name` | string | no | The name of the project |
2016-11-03 12:29:30 +05:30
| `path` | string | no | Custom repository name for the project. By default generated based on name |
2017-08-17 22:00:37 +05:30
| `default_branch` | string | no | `master` by default |
2016-11-03 12:29:30 +05:30
| `description` | string | no | Short project description |
2019-09-30 21:07:59 +05:30
| `issues_enabled` | boolean | no | (deprecated) Enable issues for this project. Use `issues_access_level` instead |
| `merge_requests_enabled` | boolean | no | (deprecated) Enable merge requests for this project. Use `merge_requests_access_level` instead |
| `jobs_enabled` | boolean | no | (deprecated) Enable jobs for this project. Use `builds_access_level` instead |
| `wiki_enabled` | boolean | no | (deprecated) Enable wiki for this project. Use `wiki_access_level` instead |
| `snippets_enabled` | boolean | no | (deprecated) Enable snippets for this project. Use `snippets_access_level` instead |
| `issues_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `repository_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `merge_requests_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-04-22 19:07:51 +05:30
| `forking_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2019-09-30 21:07:59 +05:30
| `builds_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `wiki_access_level` | string | no | One of `disabled`, `private` or `enabled` |
| `snippets_access_level` | string | no | One of `disabled`, `private` or `enabled` |
2020-03-13 15:44:24 +05:30
| `pages_access_level` | string | no | One of `disabled`, `private`, `enabled` or `public` |
| `emails_disabled` | boolean | no | Disable email notifications |
2020-05-24 23:13:21 +05:30
| `show_default_award_emojis` | boolean | no | Show default award emojis |
2018-03-17 18:26:18 +05:30
| `resolve_outdated_diff_discussions` | boolean | no | Automatically resolve merge request diffs discussions on lines changed with a push |
2016-11-03 12:29:30 +05:30
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
2020-05-24 23:13:21 +05:30
| `container_expiration_policy_attributes` | hash | no | Update the image expiration policy for this project. Accepts: `cadence` (string), `keep_n` (string), `older_than` (string), `name_regex` (string), `name_regex_delete` (string), `name_regex_keep` (string), `enabled` (boolean) |
2016-11-03 12:29:30 +05:30
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
2017-08-17 22:00:37 +05:30
| `visibility` | string | no | See [project visibility level](#project-visibility-level) |
2016-11-03 12:29:30 +05:30
| `import_url` | string | no | URL to import repository from |
2019-02-15 15:39:39 +05:30
| `public_builds` | boolean | no | If `true`, jobs can be viewed by non-project-members |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_pipeline_succeeds` | boolean | no | Set whether merge requests can only be merged with successful jobs |
2020-06-23 00:09:42 +05:30
| `allow_merge_on_skipped_pipeline` | boolean | no | Set whether or not merge requests can be merged with skipped jobs |
2017-08-17 22:00:37 +05:30
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
2019-09-30 21:07:59 +05:30
| `merge_method` | string | no | Set the [merge method](#project-merge-method) used |
2020-03-13 15:44:24 +05:30
| `autoclose_referenced_issues` | boolean | no | Set whether auto-closing referenced issues on default branch |
| `suggestion_commit_message` | string | no | The commit message used to apply merge request suggestions |
2019-12-26 22:10:19 +05:30
| `remove_source_branch_after_merge` | boolean | no | Enable `Delete source branch` option by default for all new merge requests |
2016-11-03 12:29:30 +05:30
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
2017-09-10 17:25:29 +05:30
| `tag_list` | array | no | The list of tags for a project; put array of tags, that should be finally assigned to a project |
| `avatar` | mixed | no | Image file for avatar of the project |
2019-09-30 21:07:59 +05:30
| `build_git_strategy` | string | no | The Git strategy. Defaults to `fetch` |
| `build_timeout` | integer | no | The maximum amount of time in minutes that a job is able run (in seconds) |
| `auto_cancel_pending_pipelines` | string | no | Auto-cancel pending pipelines (Note: this is not a boolean, but enabled/disabled |
| `build_coverage_regex` | string | no | Test coverage parsing |
2017-09-10 17:25:29 +05:30
| `ci_config_path` | string | no | The path to CI config file |
2020-04-08 14:13:33 +05:30
| `ci_default_git_depth` | integer | no | Default number of revisions for [shallow cloning](../ci/pipelines/settings.md#git-shallow-clone) |
2019-09-30 21:07:59 +05:30
| `auto_devops_enabled` | boolean | no | Enable Auto DevOps for this project |
| `auto_devops_deploy_strategy` | string | no | Auto Deploy strategy (`continuous`, `manual` or `timed_incremental`) |
2020-04-08 14:13:33 +05:30
| `repository_storage` | string | no | Which storage shard the repository is on. Available only to admins |
2019-09-30 21:07:59 +05:30
| `approvals_before_merge` | integer | no | **(STARTER)** How many approvers should approve merge request by default |
| `external_authorization_classification_label` | string | no | **(PREMIUM)** The classification label for the project |
| `mirror` | boolean | no | **(STARTER)** Enables pull mirroring in a project |
2020-05-30 21:06:31 +05:30
| `mirror_user_id` | integer | no | **(STARTER)** User responsible for all the activity surrounding a pull mirror event. Can only be set by admins. |
2019-09-30 21:07:59 +05:30
| `mirror_trigger_builds` | boolean | no | **(STARTER)** Pull mirroring triggers builds |
| `only_mirror_protected_branches` | boolean | no | **(STARTER)** Only mirror protected branches |
| `mirror_overwrites_diverged_branches` | boolean | no | **(STARTER)** Pull mirror overwrites diverged branches |
| `packages_enabled` | boolean | no | **(PREMIUM ONLY)** Enable or disable packages repository feature |
2020-01-01 13:55:28 +05:30
| `service_desk_enabled` | boolean | no | **(PREMIUM ONLY)** Enable or disable service desk feature |
2019-09-30 21:07:59 +05:30
NOTE: **Note:** If your HTTP repository is not publicly accessible,
add authentication information to the URL: `https://username:password@gitlab.company.com/group/project.git`
where `password` is a public access key with the `api` scope enabled.
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
## Fork project
2015-04-26 12:48:37 +05:30
2016-09-29 09:46:39 +05:30
Forks a project into the user namespace of the authenticated user or the one provided.
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
The forking operation for a project is asynchronous and is completed in a
background job. The request will return immediately. To determine whether the
fork of the project has completed, query the `import_status` for the new project.
2017-09-10 17:25:29 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
POST /projects/:id/fork
2015-04-26 12:48:37 +05:30
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2020-04-08 14:13:33 +05:30
| `namespace` | integer/string | no | (deprecated) The ID or path of the namespace that the project will be forked to |
| `namespace_id` | integer | no | The ID of the namespace that the project will be forked to |
| `namespace_path` | string | no | The path of the namespace that the project will be forked to |
2019-07-07 11:18:12 +05:30
| `path` | string | no | The path that will be assigned to the resultant project after forking |
| `name` | string | no | The name that will be assigned to the resultant project after forking |
2015-04-26 12:48:37 +05:30
2018-03-17 18:26:18 +05:30
## List Forks of a project
>**Note:** This feature was introduced in GitLab 10.1
List the projects accessible to the calling user that have an established, forked relationship with the specified project
2020-04-08 14:13:33 +05:30
```plaintext
2018-03-17 18:26:18 +05:30
GET /projects/:id/forks
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `archived` | boolean | no | Limit by archived status |
| `visibility` | string | no | Limit by visibility `public`, `internal`, or `private` |
| `order_by` | string | no | Return projects ordered by `id`, `name`, `path`, `created_at`, `updated_at`, or `last_activity_at` fields. Default is `created_at` |
| `sort` | string | no | Return projects sorted in `asc` or `desc` order. Default is `desc` |
| `search` | string | no | Return list of projects matching the search criteria |
2018-11-18 11:00:15 +05:30
| `simple` | boolean | no | Return only limited fields for each project. This is a no-op without authentication as then _only_ simple fields are returned. |
| `owned` | boolean | no | Limit by projects explicitly owned by the current user |
2018-03-17 18:26:18 +05:30
| `membership` | boolean | no | Limit by projects that the current user is a member of |
| `starred` | boolean | no | Limit by projects starred by the current user |
| `statistics` | boolean | no | Include project statistics |
2018-03-27 19:54:05 +05:30
| `with_custom_attributes` | boolean | no | Include [custom attributes](custom_attributes.md) in response (admins only) |
2018-03-17 18:26:18 +05:30
| `with_issues_enabled` | boolean | no | Limit by enabled issues feature |
| `with_merge_requests_enabled` | boolean | no | Limit by enabled merge requests feature |
2018-11-18 11:00:15 +05:30
| `min_access_level` | integer | no | Limit by current user minimal [access level](members.md) |
2018-03-17 18:26:18 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/forks"
2018-03-17 18:26:18 +05:30
```
Example responses:
```json
[
{
"id": 3,
"description": null,
"default_branch": "master",
"visibility": "internal",
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2018-03-17 18:26:18 +05:30
"tag_list": [
"example",
"disapora project"
],
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
"jobs_enabled": true,
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
"kind": "group",
"full_path": "diaspora"
},
"import_status": "none",
"archived": true,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 1,
"public_jobs": true,
"shared_with_groups": [],
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2018-03-17 18:26:18 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2018-03-17 18:26:18 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2018-03-17 18:26:18 +05:30
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
}
]
```
## Star a project
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
Stars a given project. Returns status code `304` if the project is already starred.
2016-06-02 11:05:42 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2016-06-02 11:05:42 +05:30
POST /projects/:id/star
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-06-02 11:05:42 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/star"
2016-06-02 11:05:42 +05:30
```
Example response:
```json
{
"id": 3,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "internal",
2016-06-02 11:05:42 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2016-06-02 11:05:42 +05:30
"tag_list": [
"example",
"disapora project"
],
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2016-06-02 11:05:42 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2016-06-02 11:05:42 +05:30
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "diaspora"
2016-06-02 11:05:42 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
2016-06-02 11:05:42 +05:30
"archived": true,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
2018-12-13 13:39:08 +05:30
"license_url": "http://example.com/diaspora/diaspora-client/blob/master/LICENSE",
"license": {
"key": "lgpl-3.0",
"name": "GNU Lesser General Public License v3.0",
"nickname": "GNU LGPLv3",
"html_url": "http://choosealicense.com/licenses/lgpl-3.0/",
"source_url": "http://www.gnu.org/licenses/lgpl-3.0.txt"
},
2016-06-02 11:05:42 +05:30
"shared_runners_enabled": true,
"forks_count": 0,
2016-08-24 12:49:21 +05:30
"star_count": 1,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-09-10 17:25:29 +05:30
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
2016-06-02 11:05:42 +05:30
}
```
2018-03-17 18:26:18 +05:30
## Unstar a project
2016-06-02 11:05:42 +05:30
2017-08-17 22:00:37 +05:30
Unstars a given project. Returns status code `304` if the project is not starred.
2016-06-02 11:05:42 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
POST /projects/:id/unstar
2016-06-02 11:05:42 +05:30
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-06-02 11:05:42 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/unstar"
2016-06-02 11:05:42 +05:30
```
Example response:
```json
{
"id": 3,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "internal",
2016-06-02 11:05:42 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2016-06-02 11:05:42 +05:30
"tag_list": [
"example",
"disapora project"
],
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2016-06-02 11:05:42 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2016-06-02 11:05:42 +05:30
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "diaspora"
2016-06-02 11:05:42 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
2016-06-02 11:05:42 +05:30
"archived": true,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
2018-12-13 13:39:08 +05:30
"license_url": "http://example.com/diaspora/diaspora-client/blob/master/LICENSE",
"license": {
"key": "lgpl-3.0",
"name": "GNU Lesser General Public License v3.0",
"nickname": "GNU LGPLv3",
"html_url": "http://choosealicense.com/licenses/lgpl-3.0/",
"source_url": "http://www.gnu.org/licenses/lgpl-3.0.txt"
},
2016-06-02 11:05:42 +05:30
"shared_runners_enabled": true,
"forks_count": 0,
2016-08-24 12:49:21 +05:30
"star_count": 0,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-09-10 17:25:29 +05:30
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
2016-06-02 11:05:42 +05:30
}
```
2019-10-12 21:52:04 +05:30
## List Starrers of a project
List the users who starred the specified project.
2020-04-08 14:13:33 +05:30
```plaintext
2019-10-12 21:52:04 +05:30
GET /projects/:id/starrers
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2020-04-22 19:07:51 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2019-10-12 21:52:04 +05:30
| `search` | string | no | Search for specific users. |
2020-03-13 15:44:24 +05:30
```shell
2019-10-12 21:52:04 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/starrers"
```
Example responses:
```json
[
{
"starred_since": "2019-01-28T14:47:30.642Z",
"user":
{
"id": 1,
"username": "jane_smith",
"name": "Jane Smith",
"state": "active",
"avatar_url": "http://localhost:3000/uploads/user/avatar/1/cd8.jpeg",
"web_url": "http://localhost:3000/jane_smith"
}
},
"starred_since": "2018-01-02T11:40:26.570Z",
"user":
{
"id": 2,
"username": "janine_smith",
"name": "Janine Smith",
"state": "blocked",
"avatar_url": "http://gravatar.com/../e32131cd8.jpeg",
"web_url": "http://localhost:3000/janine_smith"
}
]
```
2018-10-15 14:42:47 +05:30
## Languages
Get languages used in a project with percentage value.
2020-04-08 14:13:33 +05:30
```plaintext
2018-10-15 14:42:47 +05:30
GET /projects/:id/languages
```
2020-04-22 19:07:51 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/languages"
2018-10-15 14:42:47 +05:30
```
Example response:
```json
{
"Ruby": 66.69,
"JavaScript": 22.98,
"HTML": 7.91,
"CoffeeScript": 2.42
}
```
2018-03-17 18:26:18 +05:30
## Archive a project
2016-06-02 11:05:42 +05:30
Archives the project if the user is either admin or the project owner of this project. This action is
idempotent, thus archiving an already archived project will not change the project.
2020-04-08 14:13:33 +05:30
```plaintext
2016-06-02 11:05:42 +05:30
POST /projects/:id/archive
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-06-02 11:05:42 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/archive"
2016-06-02 11:05:42 +05:30
```
Example response:
```json
{
"id": 3,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "private",
2016-06-02 11:05:42 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2016-06-02 11:05:42 +05:30
"tag_list": [
"example",
"disapora project"
],
"owner": {
"id": 3,
"name": "Diaspora",
2016-08-24 12:49:21 +05:30
"created_at": "2013-09-30T13:46:02Z"
2016-06-02 11:05:42 +05:30
},
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2016-06-02 11:05:42 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2016-06-02 11:05:42 +05:30
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "diaspora"
2016-06-02 11:05:42 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
"import_error": null,
2016-06-02 11:05:42 +05:30
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
"archived": true,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
2018-12-13 13:39:08 +05:30
"license_url": "http://example.com/diaspora/diaspora-client/blob/master/LICENSE",
"license": {
"key": "lgpl-3.0",
"name": "GNU Lesser General Public License v3.0",
"nickname": "GNU LGPLv3",
"html_url": "http://choosealicense.com/licenses/lgpl-3.0/",
"source_url": "http://www.gnu.org/licenses/lgpl-3.0.txt"
},
2016-06-02 11:05:42 +05:30
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
2016-08-24 12:49:21 +05:30
"runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 50,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-09-10 17:25:29 +05:30
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
2016-06-02 11:05:42 +05:30
}
```
2018-03-17 18:26:18 +05:30
## Unarchive a project
2016-06-02 11:05:42 +05:30
Unarchives the project if the user is either admin or the project owner of this project. This action is
2018-03-17 18:26:18 +05:30
idempotent, thus unarchiving a non-archived project will not change the project.
2016-06-02 11:05:42 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2016-08-24 12:49:21 +05:30
POST /projects/:id/unarchive
2016-06-02 11:05:42 +05:30
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-06-02 11:05:42 +05:30
2020-03-13 15:44:24 +05:30
```shell
2019-02-15 15:39:39 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/unarchive"
2016-06-02 11:05:42 +05:30
```
Example response:
```json
{
"id": 3,
"description": null,
"default_branch": "master",
2017-08-17 22:00:37 +05:30
"visibility": "private",
2016-06-02 11:05:42 +05:30
"ssh_url_to_repo": "git@example.com:diaspora/diaspora-project-site.git",
"http_url_to_repo": "http://example.com/diaspora/diaspora-project-site.git",
"web_url": "http://example.com/diaspora/diaspora-project-site",
2018-11-08 19:23:39 +05:30
"readme_url": "http://example.com/diaspora/diaspora-project-site/blob/master/README.md",
2016-06-02 11:05:42 +05:30
"tag_list": [
"example",
"disapora project"
],
"owner": {
"id": 3,
"name": "Diaspora",
2016-08-24 12:49:21 +05:30
"created_at": "2013-09-30T13:46:02Z"
2016-06-02 11:05:42 +05:30
},
"name": "Diaspora Project Site",
"name_with_namespace": "Diaspora / Diaspora Project Site",
"path": "diaspora-project-site",
"path_with_namespace": "diaspora/diaspora-project-site",
"issues_enabled": true,
"open_issues_count": 1,
"merge_requests_enabled": true,
2017-08-17 22:00:37 +05:30
"jobs_enabled": true,
2016-06-02 11:05:42 +05:30
"wiki_enabled": true,
"snippets_enabled": false,
2020-03-13 15:44:24 +05:30
"can_create_merge_request_in": true,
2018-03-17 18:26:18 +05:30
"resolve_outdated_diff_discussions": false,
2016-08-24 12:49:21 +05:30
"container_registry_enabled": false,
"created_at": "2013-09-30T13:46:02Z",
"last_activity_at": "2013-09-30T13:46:02Z",
2016-06-02 11:05:42 +05:30
"creator_id": 3,
"namespace": {
"id": 3,
"name": "Diaspora",
"path": "diaspora",
2017-08-17 22:00:37 +05:30
"kind": "group",
"full_path": "diaspora"
2016-06-02 11:05:42 +05:30
},
2017-09-10 17:25:29 +05:30
"import_status": "none",
"import_error": null,
2016-06-02 11:05:42 +05:30
"permissions": {
"project_access": {
"access_level": 10,
"notification_level": 3
},
"group_access": {
"access_level": 50,
"notification_level": 3
}
},
"archived": false,
"avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
2018-12-13 13:39:08 +05:30
"license_url": "http://example.com/diaspora/diaspora-client/blob/master/LICENSE",
"license": {
"key": "lgpl-3.0",
"name": "GNU Lesser General Public License v3.0",
"nickname": "GNU LGPLv3",
"html_url": "http://choosealicense.com/licenses/lgpl-3.0/",
"source_url": "http://www.gnu.org/licenses/lgpl-3.0.txt"
},
2016-06-02 11:05:42 +05:30
"shared_runners_enabled": true,
"forks_count": 0,
"star_count": 0,
2016-08-24 12:49:21 +05:30
"runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
2019-09-04 21:01:54 +05:30
"ci_default_git_depth": 50,
2017-08-17 22:00:37 +05:30
"public_jobs": true,
2016-09-29 09:46:39 +05:30
"shared_with_groups": [],
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_pipeline_succeeds": false,
2020-06-23 00:09:42 +05:30
"allow_merge_on_skipped_pipeline": false,
2017-08-17 22:00:37 +05:30
"only_allow_merge_if_all_discussions_are_resolved": false,
2019-12-26 22:10:19 +05:30
"remove_source_branch_after_merge": false,
2017-09-10 17:25:29 +05:30
"request_access_enabled": false,
2018-05-09 12:01:36 +05:30
"merge_method": "merge",
2020-03-13 15:44:24 +05:30
"autoclose_referenced_issues": true,
"suggestion_commit_message": null,
2017-09-10 17:25:29 +05:30
"_links": {
"self": "http://example.com/api/v4/projects",
"issues": "http://example.com/api/v4/projects/1/issues",
"merge_requests": "http://example.com/api/v4/projects/1/merge_requests",
"repo_branches": "http://example.com/api/v4/projects/1/repository_branches",
"labels": "http://example.com/api/v4/projects/1/labels",
"events": "http://example.com/api/v4/projects/1/events",
"members": "http://example.com/api/v4/projects/1/members"
}
2016-06-02 11:05:42 +05:30
}
```
2018-03-17 18:26:18 +05:30
## Remove project
2014-09-02 18:07:02 +05:30
2020-01-01 13:55:28 +05:30
This endpoint either:
- Removes a project including all associated resources (issues, merge requests etc).
2020-06-23 00:09:42 +05:30
- From [GitLab 12.6](https://gitlab.com/gitlab-org/gitlab/-/issues/32935) on [Premium or Silver](https://about.gitlab.com/pricing/) or higher tiers, marks a project for deletion. Actual
2020-01-01 13:55:28 +05:30
deletion happens after number of days specified in
2020-03-13 15:44:24 +05:30
[instance settings](../user/admin_area/settings/visibility_and_access_controls.md#default-deletion-adjourned-period-premium-only).
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
DELETE /projects/:id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2014-09-02 18:07:02 +05:30
2020-01-01 13:55:28 +05:30
## Restore project marked for deletion **(PREMIUM)**
2020-06-23 00:09:42 +05:30
> [Introduced](https://gitlab.com/gitlab-org/gitlab/-/issues/32935) in GitLab 12.6.
2020-03-13 15:44:24 +05:30
2020-01-01 13:55:28 +05:30
Restores project marked for deletion.
2020-04-08 14:13:33 +05:30
```plaintext
2020-01-01 13:55:28 +05:30
POST /projects/:id/restore
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2018-03-17 18:26:18 +05:30
## Upload a file
Uploads a file to the specified project to be used in an issue or merge request description, or a comment.
2020-04-08 14:13:33 +05:30
```plaintext
POST /projects/:id/uploads
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `file` | string | yes | The file to be uploaded |
2017-08-17 22:00:37 +05:30
To upload a file from your filesystem, use the `--form` argument. This causes
cURL to post data using the header `Content-Type: multipart/form-data`.
The `file=` parameter must point to a file on your filesystem and be preceded
by `@`. For example:
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" --form "file=@dk.png" "https://gitlab.example.com/api/v4/projects/5/uploads"
2017-08-17 22:00:37 +05:30
```
Returned object:
```json
{
"alt": "dk",
"url": "/uploads/66dbcd21ec5d24ed6ea225176098d52b/dk.png",
2020-04-08 14:13:33 +05:30
"full_path": "/namespace1/project1/uploads/66dbcd21ec5d24ed6ea225176098d52b/dk.png",
"markdown": "![dk](/uploads/66dbcd21ec5d24ed6ea225176098d52b/dk.png)"
}
```
2020-04-08 14:13:33 +05:30
>**Note**: The returned `url` is relative to the project path. The returned `full_path` is the absolute path to the file.
2017-08-17 22:00:37 +05:30
In Markdown contexts, the link is automatically expanded when the format in
`markdown` is used.
2018-03-17 18:26:18 +05:30
## Share project with group
2016-06-02 11:05:42 +05:30
Allow to share project with group.
2020-04-08 14:13:33 +05:30
```plaintext
2016-06-02 11:05:42 +05:30
POST /projects/:id/share
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `group_id` | integer | yes | The ID of the group to share with |
2018-11-08 19:23:39 +05:30
| `group_access` | integer | yes | The [permissions level](members.md) to grant the group |
2016-11-03 12:29:30 +05:30
| `expires_at` | string | no | Share expiration date in ISO 8601 format: 2016-09-26 |
2016-06-02 11:05:42 +05:30
2018-03-17 18:26:18 +05:30
## Delete a shared project link within a group
2017-08-17 22:00:37 +05:30
Unshare the project from the group. Returns `204` and no content on success.
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
DELETE /projects/:id/share/:group_id
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `group_id` | integer | yes | The ID of the group |
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request DELETE --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/5/share/17"
2017-08-17 22:00:37 +05:30
```
2014-09-02 18:07:02 +05:30
## Hooks
2015-09-11 14:41:01 +05:30
Also called Project Hooks and Webhooks.
These are different for [System Hooks](system_hooks.md) that are system wide.
2014-09-02 18:07:02 +05:30
### List project hooks
Get a list of project hooks.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
GET /projects/:id/hooks
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2014-09-02 18:07:02 +05:30
### Get project hook
Get a specific hook for a project.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
GET /projects/:id/hooks/:hook_id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `hook_id` | integer | yes | The ID of a project hook |
2014-09-02 18:07:02 +05:30
```json
{
"id": 1,
"url": "http://example.com/hook",
"project_id": 3,
2016-08-24 12:49:21 +05:30
"push_events": true,
2018-11-20 20:47:30 +05:30
"push_events_branch_filter": "",
2016-08-24 12:49:21 +05:30
"issues_events": true,
2018-03-27 19:54:05 +05:30
"confidential_issues_events": true,
2016-08-24 12:49:21 +05:30
"merge_requests_events": true,
2016-09-29 09:46:39 +05:30
"tag_push_events": true,
2016-08-24 12:49:21 +05:30
"note_events": true,
2020-06-23 00:09:42 +05:30
"confidential_note_events": true,
2017-08-17 22:00:37 +05:30
"job_events": true,
2016-09-29 09:46:39 +05:30
"pipeline_events": true,
"wiki_page_events": true,
2016-08-24 12:49:21 +05:30
"enable_ssl_verification": true,
2014-09-02 18:07:02 +05:30
"created_at": "2012-10-12T17:04:47Z"
}
```
### Add project hook
Adds a hook to a specified project.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
POST /projects/:id/hooks
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `url` | string | yes | The hook URL |
| `push_events` | boolean | no | Trigger hook on push events |
2018-11-20 20:47:30 +05:30
| `push_events_branch_filter` | string | no | Trigger hook on push events for matching branches only |
2016-11-03 12:29:30 +05:30
| `issues_events` | boolean | no | Trigger hook on issues events |
2018-03-27 19:54:05 +05:30
| `confidential_issues_events` | boolean | no | Trigger hook on confidential issues events |
2016-11-03 12:29:30 +05:30
| `merge_requests_events` | boolean | no | Trigger hook on merge requests events |
| `tag_push_events` | boolean | no | Trigger hook on tag push events |
| `note_events` | boolean | no | Trigger hook on note events |
2020-06-23 00:09:42 +05:30
| `confidential_note_events` | boolean | no | Trigger hook on confidential note events |
2017-08-17 22:00:37 +05:30
| `job_events` | boolean | no | Trigger hook on job events |
2016-11-03 12:29:30 +05:30
| `pipeline_events` | boolean | no | Trigger hook on pipeline events |
2018-03-27 19:54:05 +05:30
| `wiki_page_events` | boolean | no | Trigger hook on wiki events |
2016-11-03 12:29:30 +05:30
| `enable_ssl_verification` | boolean | no | Do SSL verification when triggering the hook |
2017-08-17 22:00:37 +05:30
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
2014-09-02 18:07:02 +05:30
### Edit project hook
Edits a hook for a specified project.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
PUT /projects/:id/hooks/:hook_id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `hook_id` | integer | yes | The ID of the project hook |
| `url` | string | yes | The hook URL |
| `push_events` | boolean | no | Trigger hook on push events |
2018-11-20 20:47:30 +05:30
| `push_events_branch_filter` | string | no | Trigger hook on push events for matching branches only |
2016-11-03 12:29:30 +05:30
| `issues_events` | boolean | no | Trigger hook on issues events |
2018-03-27 19:54:05 +05:30
| `confidential_issues_events` | boolean | no | Trigger hook on confidential issues events |
2016-11-03 12:29:30 +05:30
| `merge_requests_events` | boolean | no | Trigger hook on merge requests events |
| `tag_push_events` | boolean | no | Trigger hook on tag push events |
| `note_events` | boolean | no | Trigger hook on note events |
2020-06-23 00:09:42 +05:30
| `confidential_note_events` | boolean | no | Trigger hook on confidential note events |
2017-08-17 22:00:37 +05:30
| `job_events` | boolean | no | Trigger hook on job events |
2016-11-03 12:29:30 +05:30
| `pipeline_events` | boolean | no | Trigger hook on pipeline events |
| `wiki_events` | boolean | no | Trigger hook on wiki events |
| `enable_ssl_verification` | boolean | no | Do SSL verification when triggering the hook |
2017-08-17 22:00:37 +05:30
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
2014-09-02 18:07:02 +05:30
### Delete project hook
Removes a hook from a project. This is an idempotent method and can be called multiple times.
Either the hook is available or not.
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
DELETE /projects/:id/hooks/:hook_id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `hook_id` | integer | yes | The ID of the project hook |
2014-09-02 18:07:02 +05:30
Note the JSON response differs if the hook is available or not. If the project hook
is available before it is returned in the JSON response or an empty response is returned.
2018-11-20 20:47:30 +05:30
## Fork relationship
2014-09-02 18:07:02 +05:30
2018-11-20 20:47:30 +05:30
Allows modification of the forked relationship between existing projects. Available only for project owners and admins.
2014-09-02 18:07:02 +05:30
2018-03-17 18:26:18 +05:30
### Create a forked from/to relation between existing projects
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
POST /projects/:id/fork/:forked_from_id
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2016-11-03 12:29:30 +05:30
| `forked_from_id` | ID | yes | The ID of the project that was forked from |
2014-09-02 18:07:02 +05:30
### Delete an existing forked from relationship
2020-04-08 14:13:33 +05:30
```plaintext
2014-09-02 18:07:02 +05:30
DELETE /projects/:id/fork
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-08-17 22:00:37 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2014-09-02 18:07:02 +05:30
## Search for projects by name
2017-08-17 22:00:37 +05:30
Search for projects by name which are accessible to the authenticated user. This
endpoint can be accessed without authentication if the project is publicly
accessible.
2014-09-02 18:07:02 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-09-10 17:25:29 +05:30
GET /projects
2014-09-02 18:07:02 +05:30
```
2016-11-03 12:29:30 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2017-09-10 17:25:29 +05:30
| `search` | string | yes | A string contained in the project name |
2016-11-03 12:29:30 +05:30
| `order_by` | string | no | Return requests ordered by `id`, `name`, `created_at` or `last_activity_at` fields |
| `sort` | string | no | Return requests sorted in `asc` or `desc` order |
2017-08-17 22:00:37 +05:30
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects?search=test"
2017-09-10 17:25:29 +05:30
```
2017-08-17 22:00:37 +05:30
## Start the Housekeeping task for a Project
2018-03-17 18:26:18 +05:30
> Introduced in GitLab 9.0.
2017-08-17 22:00:37 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2017-08-17 22:00:37 +05:30
POST /projects/:id/housekeeping
```
2019-09-30 21:07:59 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
## Push Rules **(STARTER)**
### Get project push rules
Get the push rules of a project.
2020-04-08 14:13:33 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
GET /projects/:id/push_rule
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
```json
{
"id": 1,
"project_id": 3,
"commit_message_regex": "Fixes \d+\..*",
"commit_message_negative_regex": "ssh\:\/\/",
"branch_name_regex": "",
"deny_delete_tag": false,
"created_at": "2012-10-12T17:04:47Z",
"member_check": false,
"prevent_secrets": false,
"author_email_regex": "",
"file_name_regex": "",
"max_file_size": 5,
2019-10-12 21:52:04 +05:30
"commit_committer_check": false,
"reject_unsigned_commits": false
2019-09-30 21:07:59 +05:30
}
```
Users on GitLab [Premium, Silver, or higher](https://about.gitlab.com/pricing/) will also see
2019-10-12 21:52:04 +05:30
the `commit_committer_check` and `reject_unsigned_commits` parameters:
2019-09-30 21:07:59 +05:30
```json
{
"id": 1,
"project_id": 3,
2019-10-12 21:52:04 +05:30
"commit_committer_check": false,
"reject_unsigned_commits": false
2019-09-30 21:07:59 +05:30
...
}
```
### Add project push rule
Adds a push rule to a specified project.
2020-04-08 14:13:33 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
POST /projects/:id/push_rule
```
| Attribute | Type | Required | Description |
| --------------------------------------------- | -------------- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `deny_delete_tag` **(STARTER)** | boolean | no | Deny deleting a tag |
| `member_check` **(STARTER)** | boolean | no | Restrict commits by author (email) to existing GitLab users |
| `prevent_secrets` **(STARTER)** | boolean | no | GitLab will reject any files that are likely to contain secrets |
| `commit_message_regex` **(STARTER)** | string | no | All commit messages must match this, e.g. `Fixed \d+\..*` |
| `commit_message_negative_regex` **(STARTER)** | string | no | No commit message is allowed to match this, e.g. `ssh\:\/\/` |
| `branch_name_regex` **(STARTER)** | string | no | All branch names must match this, e.g. `(feature|hotfix)\/*` |
| `author_email_regex` **(STARTER)** | string | no | All commit author emails must match this, e.g. `@my-company.com$` |
2020-03-13 15:44:24 +05:30
| `file_name_regex` **(STARTER)** | string | no | All committed filenames must **not** match this, e.g. `(jar|exe)$` |
2019-09-30 21:07:59 +05:30
| `max_file_size` **(STARTER)** | integer | no | Maximum file size (MB) |
| `commit_committer_check` **(PREMIUM)** | boolean | no | Users can only push commits to this repository that were committed with one of their own verified emails. |
2019-10-12 21:52:04 +05:30
| `reject_unsigned_commits` **(PREMIUM)** | boolean | no | Reject commit when it is not signed through GPG. |
2019-09-30 21:07:59 +05:30
### Edit project push rule
Edits a push rule for a specified project.
2020-04-08 14:13:33 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
PUT /projects/:id/push_rule
```
| Attribute | Type | Required | Description |
| --------------------------------------------- | -------------- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `deny_delete_tag` **(STARTER)** | boolean | no | Deny deleting a tag |
| `member_check` **(STARTER)** | boolean | no | Restrict commits by author (email) to existing GitLab users |
| `prevent_secrets` **(STARTER)** | boolean | no | GitLab will reject any files that are likely to contain secrets |
| `commit_message_regex` **(STARTER)** | string | no | All commit messages must match this, e.g. `Fixed \d+\..*` |
| `commit_message_negative_regex` **(STARTER)** | string | no | No commit message is allowed to match this, e.g. `ssh\:\/\/` |
| `branch_name_regex` **(STARTER)** | string | no | All branch names must match this, e.g. `(feature|hotfix)\/*` |
| `author_email_regex` **(STARTER)** | string | no | All commit author emails must match this, e.g. `@my-company.com$` |
2020-03-13 15:44:24 +05:30
| `file_name_regex` **(STARTER)** | string | no | All committed filenames must **not** match this, e.g. `(jar|exe)$` |
2019-09-30 21:07:59 +05:30
| `max_file_size` **(STARTER)** | integer | no | Maximum file size (MB) |
| `commit_committer_check` **(PREMIUM)** | boolean | no | Users can only push commits to this repository that were committed with one of their own verified emails. |
2019-10-12 21:52:04 +05:30
| `reject_unsigned_commits` **(PREMIUM)** | boolean | no | Reject commits when they are not GPG signed. |
2019-09-30 21:07:59 +05:30
### Delete project push rule
> Introduced in [GitLab Starter](https://about.gitlab.com/pricing/) 9.0.
Removes a push rule from a project. This is an idempotent method and can be called multiple times.
Either the push rule is available or not.
2020-04-08 14:13:33 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
DELETE /projects/:id/push_rule
```
2017-08-17 22:00:37 +05:30
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2018-03-17 18:26:18 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2019-09-30 21:07:59 +05:30
## Transfer a project to a new namespace
> Introduced in GitLab 11.1.
2018-11-08 19:23:39 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2018-11-08 19:23:39 +05:30
PUT /projects/:id/transfer
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
2020-04-22 19:07:51 +05:30
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2018-11-08 19:23:39 +05:30
| `namespace` | integer/string | yes | The ID or path of the namespace to transfer to project to |
2018-03-17 18:26:18 +05:30
## Branches
Read more in the [Branches](branches.md) documentation.
2018-03-27 19:54:05 +05:30
## Project Import/Export
Read more in the [Project import/export](project_import_export.md) documentation.
2018-03-17 18:26:18 +05:30
## Project members
Read more in the [Project members](members.md) documentation.
2018-03-27 19:54:05 +05:30
2019-09-30 21:07:59 +05:30
## Start the pull mirroring process for a Project **(STARTER)**
2019-12-21 20:55:43 +05:30
> Introduced in [GitLab Starter](https://about.gitlab.com/pricing/) 10.3.
2019-09-30 21:07:59 +05:30
2020-04-08 14:13:33 +05:30
```plaintext
2019-09-30 21:07:59 +05:30
POST /projects/:id/mirror/pull
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
2020-03-13 15:44:24 +05:30
```shell
2020-06-23 00:09:42 +05:30
curl --request POST --header "PRIVATE-TOKEN: <your_access_token>" "https://gitlab.example.com/api/v4/projects/:id/mirror/pull"
2019-09-30 21:07:59 +05:30
```
2018-03-27 19:54:05 +05:30
## Project badges
Read more in the [Project Badges](project_badges.md) documentation.
2018-05-09 12:01:36 +05:30
## Issue and merge request description templates
The non-default [issue and merge request description templates](../user/project/description_templates.md) are managed inside the project's repository. So you can manage them via the API through the [Repositories API](repositories.md) and the [Repository Files API](repository_files.md).
2019-12-04 20:38:33 +05:30
## Download snapshot of a Git repository
2018-05-09 12:01:36 +05:30
> Introduced in GitLab 10.7
This endpoint may only be accessed by an administrative user.
2019-12-04 20:38:33 +05:30
Download a snapshot of the project (or wiki, if requested) Git repository. This
2018-05-09 12:01:36 +05:30
snapshot is always in uncompressed [tar](https://en.wikipedia.org/wiki/Tar_(computing))
format.
If a repository is corrupted to the point where `git clone` does not work, the
snapshot may allow some of the data to be retrieved.
2020-04-08 14:13:33 +05:30
```plaintext
2018-05-09 12:01:36 +05:30
GET /projects/:id/snapshot
```
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or [URL-encoded path of the project](README.md#namespaced-path-encoding) |
| `wiki` | boolean | no | Whether to download the wiki, rather than project, repository |