projects.md 35.8 KB
Newer Older
M
Marin Jankovski 已提交
1
# Projects
2

3 4 5 6

### Project visibility level

Project in GitLab has be either private, internal or public.
7
You can determine it by `visibility_level` field in project.
8 9 10

Constants for project visibility levels are next:

11
* Private. `visibility_level` is `0`.
12 13 14 15
  Project access must be granted explicitly for each user.

* Internal. `visibility_level` is `10`.
  The project can be cloned by any logged in user.
16

17 18 19 20
* Public. `visibility_level` is `20`.
  The project can be cloned without any authentication.


21
## List projects
N
Nihad Abbasov 已提交
22

23
Get a list of projects for which the authenticated user is a member.
N
Nihad Abbasov 已提交
24 25 26 27 28

```
GET /projects
```

29 30
Parameters:

31 32 33 34 35 36 37 38
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `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 authorized projects matching the search criteria |
| `simple` | boolean | no | Return only the ID, URL, name, and path of each project |
T
Toon Claes 已提交
39 40
| `owned` | boolean | no | Limit by projects owned by the current user |
| `starred` | boolean | no | Limit by projects starred by the current user |
41

N
Nihad Abbasov 已提交
42 43 44
```json
[
  {
M
Marin Jankovski 已提交
45
    "id": 4,
N
Nihad Abbasov 已提交
46 47
    "description": null,
    "default_branch": "master",
M
Marin Jankovski 已提交
48
    "public": false,
49
    "visibility_level": 0,
M
Marin Jankovski 已提交
50 51 52
    "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",
53 54 55 56
    "tag_list": [
      "example",
      "disapora client"
    ],
N
Nihad Abbasov 已提交
57
    "owner": {
M
Marin Jankovski 已提交
58 59
      "id": 3,
      "name": "Diaspora",
B
Ben Boeckel 已提交
60
      "created_at": "2013-09-30T13:46:02Z"
N
Nihad Abbasov 已提交
61
    },
M
Marin Jankovski 已提交
62 63 64 65 66
    "name": "Diaspora Client",
    "name_with_namespace": "Diaspora / Diaspora Client",
    "path": "diaspora-client",
    "path_with_namespace": "diaspora/diaspora-client",
    "issues_enabled": true,
S
Stan Hu 已提交
67
    "open_issues_count": 1,
M
Marin Jankovski 已提交
68
    "merge_requests_enabled": true,
69
    "builds_enabled": true,
N
Nihad Abbasov 已提交
70
    "wiki_enabled": true,
M
Marin Jankovski 已提交
71
    "snippets_enabled": false,
72
    "container_registry_enabled": false,
B
Ben Boeckel 已提交
73 74
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
75
    "creator_id": 3,
M
Marin Jankovski 已提交
76 77 78 79
    "namespace": {
      "id": 3,
      "name": "Diaspora",
      "path": "diaspora",
80 81
      "kind": "group",
      "full_path": "diaspora"
82
    },
S
sue445 已提交
83
    "archived": false,
T
Tomasz Maczukin 已提交
84 85 86
    "avatar_url": "http://example.com/uploads/project/avatar/4/uploads/avatar.png",
    "shared_runners_enabled": true,
    "forks_count": 0,
87 88
    "star_count": 0,
    "runners_token": "b8547b1dc37721d05889db52fa2f02",
89
    "public_builds": true,
90
    "shared_with_groups": [],
91
    "only_allow_merge_if_build_succeeds": false,
92
    "only_allow_merge_if_all_discussions_are_resolved": false,
93
    "request_access_enabled": false
N
Nihad Abbasov 已提交
94 95
  },
  {
M
Marin Jankovski 已提交
96
    "id": 6,
N
Nihad Abbasov 已提交
97
    "description": null,
M
Marin Jankovski 已提交
98 99
    "default_branch": "master",
    "public": false,
100
    "visibility_level": 0,
M
Marin Jankovski 已提交
101 102 103
    "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",
104 105 106 107
    "tag_list": [
      "example",
      "puppet"
    ],
J
Johannes Schleifenbaum 已提交
108
    "owner": {
M
Marin Jankovski 已提交
109 110 111
      "id": 4,
      "name": "Brightbox",
      "created_at": "2013-09-30T13:46:02Z"
N
Nihad Abbasov 已提交
112
    },
M
Marin Jankovski 已提交
113 114 115 116
    "name": "Puppet",
    "name_with_namespace": "Brightbox / Puppet",
    "path": "puppet",
    "path_with_namespace": "brightbox/puppet",
N
Nihad Abbasov 已提交
117
    "issues_enabled": true,
S
Stan Hu 已提交
118
    "open_issues_count": 1,
N
Nihad Abbasov 已提交
119
    "merge_requests_enabled": true,
120
    "builds_enabled": true,
N
Nihad Abbasov 已提交
121
    "wiki_enabled": true,
M
Marin Jankovski 已提交
122
    "snippets_enabled": false,
123
    "container_registry_enabled": false,
M
Marin Jankovski 已提交
124 125
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
126
    "creator_id": 3,
J
Johannes Schleifenbaum 已提交
127
    "namespace": {
M
Marin Jankovski 已提交
128 129 130
      "id": 4,
      "name": "Brightbox",
      "path": "brightbox",
131 132
      "kind": "group",
      "full_path": "brightbox"
133
    },
134 135 136 137 138 139 140 141 142 143
    "permissions": {
      "project_access": {
        "access_level": 10,
        "notification_level": 3
      },
      "group_access": {
        "access_level": 50,
        "notification_level": 3
      }
    },
S
sue445 已提交
144
    "archived": false,
T
Tomasz Maczukin 已提交
145 146 147 148
    "avatar_url": null,
    "shared_runners_enabled": true,
    "forks_count": 0,
    "star_count": 0,
149
    "runners_token": "b8547b1dc37721d05889db52fa2f02",
150
    "public_builds": true,
151
    "shared_with_groups": [],
152
    "only_allow_merge_if_build_succeeds": false,
153
    "only_allow_merge_if_all_discussions_are_resolved": false,
154
    "request_access_enabled": false
N
Nihad Abbasov 已提交
155 156 157 158
  }
]
```

159
### Get single project
N
Nihad Abbasov 已提交
160

161
Get a specific project, identified by project ID or NAMESPACE/PROJECT_NAME, which is owned by the authenticated user.
162 163
If using namespaced projects call make sure that the NAMESPACE/PROJECT_NAME is URL-encoded, eg. `/api/v3/projects/diaspora%2Fdiaspora` (where `/` is represented by `%2F`). This endpoint can be accessed without authentication if
the project is publicly accessible.
N
Nihad Abbasov 已提交
164 165 166 167 168 169 170

```
GET /projects/:id
```

Parameters:

171 172 173
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
N
Nihad Abbasov 已提交
174

A
Alex Denisov 已提交
175 176
```json
{
M
Marin Jankovski 已提交
177
  "id": 3,
A
Alex Denisov 已提交
178
  "description": null,
M
Marin Jankovski 已提交
179 180
  "default_branch": "master",
  "public": false,
181
  "visibility_level": 0,
M
Marin Jankovski 已提交
182 183 184
  "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",
185 186 187 188
  "tag_list": [
    "example",
    "disapora project"
  ],
A
Alex Denisov 已提交
189
  "owner": {
M
Marin Jankovski 已提交
190 191
    "id": 3,
    "name": "Diaspora",
B
Ben Boeckel 已提交
192
    "created_at": "2013-09-30T13:46:02Z"
A
Alex Denisov 已提交
193
  },
M
Marin Jankovski 已提交
194 195 196 197
  "name": "Diaspora Project Site",
  "name_with_namespace": "Diaspora / Diaspora Project Site",
  "path": "diaspora-project-site",
  "path_with_namespace": "diaspora/diaspora-project-site",
A
Alex Denisov 已提交
198
  "issues_enabled": true,
S
Stan Hu 已提交
199
  "open_issues_count": 1,
A
Alex Denisov 已提交
200
  "merge_requests_enabled": true,
201
  "builds_enabled": true,
A
Alex Denisov 已提交
202
  "wiki_enabled": true,
M
Marin Jankovski 已提交
203
  "snippets_enabled": false,
204
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
205 206
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
207
  "creator_id": 3,
M
Marin Jankovski 已提交
208 209 210 211
  "namespace": {
    "id": 3,
    "name": "Diaspora",
    "path": "diaspora",
212 213
    "kind": "group",
    "full_path": "diaspora"
J
Johannes Schleifenbaum 已提交
214
  },
D
Dmitriy Zaporozhets 已提交
215 216 217 218 219 220 221 222 223
  "permissions": {
    "project_access": {
      "access_level": 10,
      "notification_level": 3
    },
    "group_access": {
      "access_level": 50,
      "notification_level": 3
    }
224
  },
S
sue445 已提交
225
  "archived": false,
T
Tomasz Maczukin 已提交
226 227 228 229
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
  "star_count": 0,
230 231 232 233 234 235 236 237 238 239 240 241 242
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
  "shared_with_groups": [
    {
      "group_id": 4,
      "group_name": "Twitter",
      "group_access_level": 30
    },
    {
      "group_id": 3,
      "group_name": "Gitlab Org",
      "group_access_level": 10
    }
243
  ],
244
  "only_allow_merge_if_build_succeeds": false,
245
  "only_allow_merge_if_all_discussions_are_resolved": false,
246
  "request_access_enabled": false
A
Alex Denisov 已提交
247 248 249
}
```

250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285
## Get project users

Get the users list of a project.


Parameters:

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `search` | string | no | Search for specific users |

```
GET /projects/:id/users
```

```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"
  }
]
```

D
Dmitriy Zaporozhets 已提交
286 287
### Get project events

288 289 290
Get the events for the specified project sorted from newest to oldest. This
endpoint can be accessed without authentication if the project is publicly
accessible.
D
Dmitriy Zaporozhets 已提交
291 292 293 294 295 296 297

```
GET /projects/:id/events
```

Parameters:

298 299 300
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
D
Dmitriy Zaporozhets 已提交
301 302

```json
J
Johannes Schleifenbaum 已提交
303 304 305 306 307 308 309 310 311
[
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 830,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
312 313 314 315 316 317 318
    "target_title": "Public project search field",
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
319
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
320 321
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
322 323 324 325 326 327 328 329
  },
  {
    "title": null,
    "project_id": 15,
    "action_name": "opened",
    "target_id": null,
    "target_type": null,
    "author_id": 1,
D
Dmitriy Zaporozhets 已提交
330 331 332 333 334 335
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
336
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
337
    },
338
    "author_username": "john",
J
Johannes Schleifenbaum 已提交
339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363
    "data": {
      "before": "50d4420237a9de7be1304607147aec22e4a14af7",
      "after": "c5feabde2d8cd023215af4d2ceeb7a64839fc428",
      "ref": "refs/heads/master",
      "user_id": 1,
      "user_name": "Dmitriy Zaporozhets",
      "repository": {
        "name": "gitlabhq",
        "url": "git@dev.gitlab.org:gitlab/gitlabhq.git",
        "description": "GitLab: self hosted Git management software. \r\nDistributed under the MIT License.",
        "homepage": "https://dev.gitlab.org/gitlab/gitlabhq"
      },
      "commits": [
        {
          "id": "c5feabde2d8cd023215af4d2ceeb7a64839fc428",
          "message": "Add simple search to projects in public area",
          "timestamp": "2013-05-13T18:18:08+00:00",
          "url": "https://dev.gitlab.org/gitlab/gitlabhq/commit/c5feabde2d8cd023215af4d2ceeb7a64839fc428",
          "author": {
            "name": "Dmitriy Zaporozhets",
            "email": "dmitriy.zaporozhets@gmail.com"
          }
        }
      ],
      "total_commits_count": 1
D
Dmitriy Zaporozhets 已提交
364
    },
J
Johannes Schleifenbaum 已提交
365
    "target_title": null
D
Dmitriy Zaporozhets 已提交
366
  },
J
Johannes Schleifenbaum 已提交
367 368 369 370 371 372 373 374
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 840,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
375 376 377 378 379 380 381
    "target_title": "Finish & merge Code search PR",
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
382
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
    },
    "author_username": "root"
  },
  {
    "title": null,
    "project_id": 15,
    "action_name": "commented on",
    "target_id": 1312,
    "target_type": "Note",
    "author_id": 1,
    "data": null,
    "target_title": null,
    "created_at": "2015-12-04T10:33:58.089Z",
    "note": {
      "id": 1312,
      "body": "What an awesome day!",
      "attachment": null,
      "author": {
        "name": "Dmitriy Zaporozhets",
        "username": "root",
        "id": 1,
        "state": "active",
        "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
406
        "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
407 408 409 410 411 412 413 414 415 416 417 418 419 420
      },
      "created_at": "2015-12-04T10:33:56.698Z",
      "system": false,
      "upvote": false,
      "downvote": false,
      "noteable_id": 377,
      "noteable_type": "Issue"
    },
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
421
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
422 423
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
424 425
  }
]
D
Dmitriy Zaporozhets 已提交
426 427
```

428
### Create project
A
Alex Denisov 已提交
429

430
Creates a new project owned by the authenticated user.
A
Alex Denisov 已提交
431 432 433 434 435 436 437

```
POST /projects
```

Parameters:

438 439 440 441 442 443 444 445 446 447 448 449 450
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `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 |
| `issues_enabled` | boolean | no | Enable issues for this project |
| `merge_requests_enabled` | boolean | no | Enable merge requests for this project |
| `builds_enabled` | boolean | no | Enable builds for this project |
| `wiki_enabled` | boolean | no | Enable wiki for this project |
| `snippets_enabled` | boolean | no | Enable snippets for this project |
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
451
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
452 453 454
| `import_url` | string | no | URL to import repository from |
| `public_builds` | boolean | no | If `true`, builds can be viewed by non-project-members |
| `only_allow_merge_if_build_succeeds` | boolean | no | Set whether merge requests can only be merged with successful builds |
455
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
456 457
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
458

459 460
### Create project for user

461
Creates a new project owned by the specified user. Available only for admins.
462 463 464 465 466 467 468

```
POST /projects/user/:user_id
```

Parameters:

469 470 471 472 473
| 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 |
474
| `default_branch` | string | no | `master` by default |
475 476 477 478 479 480 481 482 483
| `namespace_id` | integer | no | Namespace for the new project (defaults to the current user's namespace) |
| `description` | string | no | Short project description |
| `issues_enabled` | boolean | no | Enable issues for this project |
| `merge_requests_enabled` | boolean | no | Enable merge requests for this project |
| `builds_enabled` | boolean | no | Enable builds for this project |
| `wiki_enabled` | boolean | no | Enable wiki for this project |
| `snippets_enabled` | boolean | no | Enable snippets for this project |
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
484
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
485 486 487
| `import_url` | string | no | URL to import repository from |
| `public_builds` | boolean | no | If `true`, builds can be viewed by non-project-members |
| `only_allow_merge_if_build_succeeds` | boolean | no | Set whether merge requests can only be merged with successful builds |
488
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
489 490
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
A
Alex Denisov 已提交
491

492 493
### Edit project

494
Updates an existing project.
495 496 497 498 499 500 501

```
PUT /projects/:id
```

Parameters:

502 503 504 505 506
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
| `name` | string | yes | The name of the project |
| `path` | string | no | Custom repository name for the project. By default generated based on name |
507
| `default_branch` | string | no | `master` by default |
508 509 510 511 512 513 514 515
| `description` | string | no | Short project description |
| `issues_enabled` | boolean | no | Enable issues for this project |
| `merge_requests_enabled` | boolean | no | Enable merge requests for this project |
| `builds_enabled` | boolean | no | Enable builds for this project |
| `wiki_enabled` | boolean | no | Enable wiki for this project |
| `snippets_enabled` | boolean | no | Enable snippets for this project |
| `container_registry_enabled` | boolean | no | Enable container registry for this project |
| `shared_runners_enabled` | boolean | no | Enable shared runners for this project |
516
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
517 518 519
| `import_url` | string | no | URL to import repository from |
| `public_builds` | boolean | no | If `true`, builds can be viewed by non-project-members |
| `only_allow_merge_if_build_succeeds` | boolean | no | Set whether merge requests can only be merged with successful builds |
520
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
521 522
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
523

524 525
### Fork project

526
Forks a project into the user namespace of the authenticated user or the one provided.
527 528

```
529
POST /projects/:id/fork
530 531 532 533
```

Parameters:

534 535 536 537
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
| `namespace` | integer/string | yes | The ID or path of the namespace that the project will be forked to |
538

539 540
### Star a project

541
Stars a given project. Returns status code `304` if the project is already starred.
542 543 544 545 546

```
POST /projects/:id/star
```

547 548
Parameters:

549 550
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
551
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
552 553

```bash
554
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582
```

Example response:

```json
{
  "id": 3,
  "description": null,
  "default_branch": "master",
  "public": false,
  "visibility_level": 10,
  "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",
  "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,
  "builds_enabled": true,
  "wiki_enabled": true,
  "snippets_enabled": false,
583
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
584 585
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
586 587 588 589 590
  "creator_id": 3,
  "namespace": {
    "id": 3,
    "name": "Diaspora",
    "path": "diaspora",
591 592
    "kind": "group",
    "full_path": "diaspora"
593 594 595 596 597
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
598 599
  "star_count": 1,
  "public_builds": true,
600
  "shared_with_groups": [],
601
  "only_allow_merge_if_build_succeeds": false,
602
  "only_allow_merge_if_all_discussions_are_resolved": false,
603
  "request_access_enabled": false
604 605 606 607 608
}
```

### Unstar a project

609
Unstars a given project. Returns status code `304` if the project is not starred.
610 611

```
612
POST /projects/:id/unstar
613 614 615 616
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
617
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
618 619

```bash
620
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/unstar"
621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648
```

Example response:

```json
{
  "id": 3,
  "description": null,
  "default_branch": "master",
  "public": false,
  "visibility_level": 10,
  "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",
  "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,
  "builds_enabled": true,
  "wiki_enabled": true,
  "snippets_enabled": false,
649
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
650 651
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
652 653 654 655 656
  "creator_id": 3,
  "namespace": {
    "id": 3,
    "name": "Diaspora",
    "path": "diaspora",
657 658
    "kind": "group",
    "full_path": "diaspora"
659 660 661 662 663
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
664 665
  "star_count": 0,
  "public_builds": true,
666
  "shared_with_groups": [],
667
  "only_allow_merge_if_build_succeeds": false,
668
  "only_allow_merge_if_all_discussions_are_resolved": false,
669
  "request_access_enabled": false
670 671 672
}
```

673 674
### Archive a project

675
Archives the project if the user is either admin or the project owner of this project. This action is
676 677 678
idempotent, thus archiving an already archived project will not change the project.

```
679
POST /projects/:id/archive
680 681 682 683
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
684
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
685 686

```bash
687
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/archive"
688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708
```

Example response:

```json
{
  "id": 3,
  "description": null,
  "default_branch": "master",
  "public": false,
  "visibility_level": 0,
  "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",
  "tag_list": [
    "example",
    "disapora project"
  ],
  "owner": {
    "id": 3,
    "name": "Diaspora",
B
Ben Boeckel 已提交
709
    "created_at": "2013-09-30T13:46:02Z"
710 711 712 713 714 715 716 717 718 719 720
  },
  "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,
  "builds_enabled": true,
  "wiki_enabled": true,
  "snippets_enabled": false,
721
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
722 723
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
724 725 726 727 728
  "creator_id": 3,
  "namespace": {
    "id": 3,
    "name": "Diaspora",
    "path": "diaspora",
729 730
    "kind": "group",
    "full_path": "diaspora"
731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746
  },
  "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",
  "shared_runners_enabled": true,
  "forks_count": 0,
  "star_count": 0,
747 748
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
749
  "shared_with_groups": [],
750
  "only_allow_merge_if_build_succeeds": false,
751
  "only_allow_merge_if_all_discussions_are_resolved": false,
752
  "request_access_enabled": false
753 754 755 756 757
}
```

### Unarchive a project

758
Unarchives the project if the user is either admin or the project owner of this project. This action is
759 760 761
idempotent, thus unarchiving an non-archived project will not change the project.

```
S
Sergey Gnuskov 已提交
762
POST /projects/:id/unarchive
763 764 765 766
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
767
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
768 769

```bash
770
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/unarchive"
771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791
```

Example response:

```json
{
  "id": 3,
  "description": null,
  "default_branch": "master",
  "public": false,
  "visibility_level": 0,
  "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",
  "tag_list": [
    "example",
    "disapora project"
  ],
  "owner": {
    "id": 3,
    "name": "Diaspora",
B
Ben Boeckel 已提交
792
    "created_at": "2013-09-30T13:46:02Z"
793 794 795 796 797 798 799 800 801 802 803
  },
  "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,
  "builds_enabled": true,
  "wiki_enabled": true,
  "snippets_enabled": false,
804
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
805 806
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
807 808 809 810 811
  "creator_id": 3,
  "namespace": {
    "id": 3,
    "name": "Diaspora",
    "path": "diaspora",
812 813
    "kind": "group",
    "full_path": "diaspora"
814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829
  },
  "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",
  "shared_runners_enabled": true,
  "forks_count": 0,
  "star_count": 0,
830 831
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
832
  "shared_with_groups": [],
833
  "only_allow_merge_if_build_succeeds": false,
834
  "only_allow_merge_if_all_discussions_are_resolved": false,
835
  "request_access_enabled": false
836 837 838
}
```

839
### Remove project
D
Dmitriy Zaporozhets 已提交
840

841
Removes a project including all associated resources (issues, merge requests etc.)
D
Dmitriy Zaporozhets 已提交
842 843 844 845 846 847 848

```
DELETE /projects/:id
```

Parameters:

849 850 851
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
852

D
Douwe Maan 已提交
853 854 855 856 857 858 859 860 861 862 863 864
## Uploads

### Upload a file

Uploads a file to the specified project to be used in an issue or merge request description, or a comment.

```
POST /projects/:id/uploads
```

Parameters:

865 866 867 868
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `file` | string | yes | The file to be uploaded |
D
Douwe Maan 已提交
869 870 871 872 873 874 875 876 877 878 879 880 881

```json
{
  "alt": "dk",
  "url": "/uploads/66dbcd21ec5d24ed6ea225176098d52b/dk.png",
  "markdown": "![dk](/uploads/66dbcd21ec5d24ed6ea225176098d52b/dk.png)"
}
```

**Note**: The returned `url` is relative to the project path.
In Markdown contexts, the link is automatically expanded when the format in `markdown` is used.


882
## Project members
883

884
Please consult the [Project Members](members.md) documentation.
N
Nihad Abbasov 已提交
885

886 887 888 889 890 891 892 893 894 895
### Share project with group

Allow to share project with group.

```
POST /projects/:id/share
```

Parameters:

896 897 898 899 900 901
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `group_id` | integer | yes | The ID of the group to share with |
| `group_access` | integer | yes | The permissions level to grant the group |
| `expires_at` | string | no | Share expiration date in ISO 8601 format: 2016-09-26 |
902

903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921
### Delete a shared project link within a group

Unshare the project from the group. Returns `204` and no content on success.

```
DELETE /projects/:id/share/:group_id
```

Parameters:

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `group_id` | integer | yes | The ID of the group |

```bash
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v3/projects/5/share/17
```

922 923
## Hooks

924 925 926
Also called Project Hooks and Webhooks.
These are different for [System Hooks](system_hooks.md) that are system wide.

927 928
### List project hooks

929
Get a list of project hooks.
M
miks 已提交
930 931 932 933 934 935 936

```
GET /projects/:id/hooks
```

Parameters:

937 938 939
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
M
miks 已提交
940

941
### Get project hook
942

943
Get a specific hook for a project.
944 945 946 947 948

```
GET /projects/:id/hooks/:hook_id
```

949
Parameters:
950

951 952 953 954
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `hook_id` | integer | yes | The ID of a project hook |
955

956 957 958 959
```json
{
  "id": 1,
  "url": "http://example.com/hook",
960
  "project_id": 3,
B
Ben Boeckel 已提交
961 962 963
  "push_events": true,
  "issues_events": true,
  "merge_requests_events": true,
964
  "tag_push_events": true,
B
Ben Boeckel 已提交
965
  "note_events": true,
966 967
  "build_events": true,
  "pipeline_events": true,
968
  "wiki_page_events": true,
B
Ben Boeckel 已提交
969
  "enable_ssl_verification": true,
970 971 972 973 974 975
  "created_at": "2012-10-12T17:04:47Z"
}
```

### Add project hook

976
Adds a hook to a specified project.
M
miks 已提交
977 978 979 980 981 982 983

```
POST /projects/:id/hooks
```

Parameters:

984 985 986 987 988 989 990 991 992 993 994 995 996
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `url` | string | yes | The hook URL |
| `push_events` | boolean | no | Trigger hook on push events |
| `issues_events` | boolean | no | Trigger hook on issues events |
| `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 |
| `build_events` | boolean | no | Trigger hook on build events |
| `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 |
997
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
998

999 1000
### Edit project hook

1001
Edits a hook for a specified project.
1002 1003 1004 1005 1006 1007 1008

```
PUT /projects/:id/hooks/:hook_id
```

Parameters:

1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `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 |
| `issues_events` | boolean | no | Trigger hook on issues events |
| `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 |
| `build_events` | boolean | no | Trigger hook on build events |
| `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 |
1023
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
1024

1025
### Delete project hook
M
miks 已提交
1026

1027
Removes a hook from a project. This is an idempotent method and can be called multiple times.
1028
Either the hook is available or not.
M
miks 已提交
1029 1030

```
1031
DELETE /projects/:id/hooks/:hook_id
M
miks 已提交
1032 1033 1034 1035
```

Parameters:

1036 1037 1038 1039
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `hook_id` | integer | yes | The ID of the project hook |
M
miks 已提交
1040

1041 1042
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.
1043 1044 1045

## Branches

M
Miroslav Meca 已提交
1046 1047
For more information please consult the [Branches](branches.md) documentation.

1048 1049 1050 1051 1052 1053 1054 1055 1056 1057
### List branches

Lists all branches of a project.

```
GET /projects/:id/repository/branches
```

Parameters:

1058 1059 1060
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
1061

M
Marin Jankovski 已提交
1062 1063 1064
```json
[
  {
J
Johannes Schleifenbaum 已提交
1065
    "name": "async",
M
Marin Jankovski 已提交
1066
    "commit": {
J
Johannes Schleifenbaum 已提交
1067
      "id": "a2b702edecdf41f07b42653eb1abe30ce98b9fca",
M
Miroslav Meca 已提交
1068 1069
      "parent_ids": [
        "3f94fc7c85061973edc9906ae170cc269b07ca55"
J
Johannes Schleifenbaum 已提交
1070
      ],
1071
      "message": "give Caolan credit where it's due (up top)",
M
Miroslav Meca 已提交
1072 1073
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1074
      "authored_date": "2010-12-08T21:28:50+00:00",
M
Miroslav Meca 已提交
1075 1076
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1077
      "committed_date": "2010-12-08T21:28:50+00:00"
M
Marin Jankovski 已提交
1078
    },
M
Miroslav Meca 已提交
1079 1080 1081
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1082 1083 1084 1085 1086
  },
  {
    "name": "gh-pages",
    "commit": {
      "id": "101c10a60019fe870d21868835f65c25d64968fc",
M
Miroslav Meca 已提交
1087 1088
      "parent_ids": [
          "9c15d2e26945a665131af5d7b6d30a06ba338aaa"
J
Johannes Schleifenbaum 已提交
1089
      ],
M
Marin Jankovski 已提交
1090
      "message": "Underscore.js 1.5.2",
M
Miroslav Meca 已提交
1091 1092
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1093
      "authored_date": "2013-09-07T12:58:21+00:00",
M
Miroslav Meca 已提交
1094 1095
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1096
      "committed_date": "2013-09-07T12:58:21+00:00"
M
Marin Jankovski 已提交
1097
    },
M
Miroslav Meca 已提交
1098 1099 1100
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1101 1102 1103
  }
]
```
1104

M
Miroslav Meca 已提交
1105
### Single branch
1106

M
Miroslav Meca 已提交
1107
A specific branch of a project.
1108 1109 1110 1111 1112 1113 1114

```
GET /projects/:id/repository/branches/:branch
```

Parameters:

1115 1116 1117 1118 1119 1120
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `branch` | string | yes | The name of the branch |
| `developers_can_push` | boolean | no | Flag if developers can push to the branch |
| `developers_can_merge` | boolean | no | Flag if developers can merge to the branch |
1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131

### Protect single branch

Protects a single branch of a project.

```
PUT /projects/:id/repository/branches/:branch/protect
```

Parameters:

1132 1133 1134 1135
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `branch` | string | yes | The name of the branch |
1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146

### Unprotect single branch

Unprotects a single branch of a project.

```
PUT /projects/:id/repository/branches/:branch/unprotect
```

Parameters:

1147 1148 1149 1150
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `branch` | string | yes | The name of the branch |
1151 1152 1153

## Admin fork relation

1154
Allows modification of the forked relationship between existing projects. Available only for admins.
1155 1156 1157 1158 1159 1160 1161 1162 1163

### Create a forked from/to relation between existing projects.

```
POST /projects/:id/fork/:forked_from_id
```

Parameters:

1164 1165 1166 1167
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
| `forked_from_id` | ID | yes | The ID of the project that was forked from |
1168 1169 1170 1171 1172 1173 1174 1175 1176

### Delete an existing forked from relationship

```
DELETE /projects/:id/fork
```

Parameter:

1177 1178 1179
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
I
Izaak Alpert 已提交
1180 1181 1182

## Search for projects by name

1183 1184 1185
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.
I
Izaak Alpert 已提交
1186 1187 1188 1189 1190 1191 1192

```
GET /projects/search/:query
```

Parameters:

1193 1194
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
1195 1196
| `query` | string | yes | A string contained in the project name |
| `order_by` | string | no | Return requests ordered by `id`, `name`, `created_at` or `last_activity_at` fields |
1197
| `sort` | string | no | Return requests sorted in `asc` or `desc` order |