projects.md 30.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

D
Dmitriy Zaporozhets 已提交
23
Get a list of projects accessible by the authenticated user.
N
Nihad Abbasov 已提交
24 25 26 27 28

```
GET /projects
```

29 30
Parameters:

31
- `archived` (optional) - if passed, limit by archived status
32
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
33 34
- `order_by` (optional) - Return requests ordered by `id`, `name`, `path`, `created_at`, `updated_at` or `last_activity_at` fields. Default is `created_at`
- `sort` (optional) - Return requests sorted in `asc` or `desc` order. Default is `desc`
35
- `search` (optional) - Return list of authorized projects according to a search criteria
36

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

154
### List owned projects
D
Dmitriy Zaporozhets 已提交
155

156
Get a list of projects which are owned by the authenticated user.
D
Dmitriy Zaporozhets 已提交
157 158 159 160 161

```
GET /projects/owned
```

162 163 164
Parameters:

- `archived` (optional) - if passed, limit by archived status
165
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
166 167
- `order_by` (optional) - Return requests ordered by `id`, `name`, `path`, `created_at`, `updated_at` or `last_activity_at` fields. Default is `created_at`
- `sort` (optional) - Return requests sorted in `asc` or `desc` order. Default is `desc`
168 169 170 171 172 173 174 175 176 177 178 179 180
- `search` (optional) - Return list of authorized projects according to a search criteria

### List starred projects

Get a list of projects which are starred by the authenticated user.

```
GET /projects/starred
```

Parameters:

- `archived` (optional) - if passed, limit by archived status
181
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
182 183
- `order_by` (optional) - Return requests ordered by `id`, `name`, `path`, `created_at`, `updated_at` or `last_activity_at` fields. Default is `created_at`
- `sort` (optional) - Return requests sorted in `asc` or `desc` order. Default is `desc`
184 185
- `search` (optional) - Return list of authorized projects according to a search criteria

186
### List ALL projects
D
Dmitriy Zaporozhets 已提交
187 188 189 190 191 192 193

Get a list of all GitLab projects (admin only).

```
GET /projects/all
```

194 195 196
Parameters:

- `archived` (optional) - if passed, limit by archived status
197
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
198 199 200 201
- `order_by` (optional) - Return requests ordered by `id`, `name`, `path`, `created_at`, `updated_at` or `last_activity_at` fields. Default is `created_at`
- `sort` (optional) - Return requests sorted in `asc` or `desc` order. Default is `desc`
- `search` (optional) - Return list of authorized projects according to a search criteria

202
### Get single project
N
Nihad Abbasov 已提交
203

204
Get a specific project, identified by project ID or NAMESPACE/PROJECT_NAME, which is owned by the authenticated user.
M
Marin Jankovski 已提交
205
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`).
N
Nihad Abbasov 已提交
206 207 208 209 210 211 212

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

Parameters:

213
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
N
Nihad Abbasov 已提交
214

A
Alex Denisov 已提交
215 216
```json
{
M
Marin Jankovski 已提交
217
  "id": 3,
A
Alex Denisov 已提交
218
  "description": null,
M
Marin Jankovski 已提交
219 220
  "default_branch": "master",
  "public": false,
221
  "visibility_level": 0,
M
Marin Jankovski 已提交
222 223 224
  "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",
225 226 227 228
  "tag_list": [
    "example",
    "disapora project"
  ],
A
Alex Denisov 已提交
229
  "owner": {
M
Marin Jankovski 已提交
230 231
    "id": 3,
    "name": "Diaspora",
B
Ben Boeckel 已提交
232
    "created_at": "2013-09-30T13:46:02Z"
A
Alex Denisov 已提交
233
  },
M
Marin Jankovski 已提交
234 235 236 237
  "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 已提交
238
  "issues_enabled": true,
S
Stan Hu 已提交
239
  "open_issues_count": 1,
A
Alex Denisov 已提交
240
  "merge_requests_enabled": true,
241
  "builds_enabled": true,
A
Alex Denisov 已提交
242
  "wiki_enabled": true,
M
Marin Jankovski 已提交
243
  "snippets_enabled": false,
244
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
245 246
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
247
  "creator_id": 3,
M
Marin Jankovski 已提交
248
  "namespace": {
B
Ben Boeckel 已提交
249
    "created_at": "2013-09-30T13:46:02Z",
M
Marin Jankovski 已提交
250 251 252 253 254
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
255
    "updated_at": "2013-09-30T13:46:02Z"
J
Johannes Schleifenbaum 已提交
256
  },
D
Dmitriy Zaporozhets 已提交
257 258 259 260 261 262 263 264 265
  "permissions": {
    "project_access": {
      "access_level": 10,
      "notification_level": 3
    },
    "group_access": {
      "access_level": 50,
      "notification_level": 3
    }
266
  },
S
sue445 已提交
267
  "archived": false,
T
Tomasz Maczukin 已提交
268 269 270 271
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
  "star_count": 0,
272 273 274 275 276 277 278 279 280 281 282 283 284
  "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
    }
285 286
  ],
  "only_allow_merge_if_build_succeeds": false
A
Alex Denisov 已提交
287 288 289
}
```

D
Dmitriy Zaporozhets 已提交
290 291
### Get project events

292
Get the events for the specified project.
D
Dmitriy Zaporozhets 已提交
293 294 295 296 297 298 299 300
Sorted from newest to latest

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

Parameters:

301
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
D
Dmitriy Zaporozhets 已提交
302 303

```json
J
Johannes Schleifenbaum 已提交
304 305 306 307 308 309 310 311 312
[
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 830,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
313 314 315 316 317 318 319 320 321 322
    "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",
      "web_url": "http://localhost:3000/u/root"
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
323 324 325 326 327 328 329 330
  },
  {
    "title": null,
    "project_id": 15,
    "action_name": "opened",
    "target_id": null,
    "target_type": null,
    "author_id": 1,
D
Dmitriy Zaporozhets 已提交
331 332 333 334 335 336 337 338
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
      "web_url": "http://localhost:3000/u/root"
    },
339
    "author_username": "john",
J
Johannes Schleifenbaum 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364
    "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 已提交
365
    },
J
Johannes Schleifenbaum 已提交
366
    "target_title": null
D
Dmitriy Zaporozhets 已提交
367
  },
J
Johannes Schleifenbaum 已提交
368 369 370 371 372 373 374 375
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 840,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424
    "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",
      "web_url": "http://localhost:3000/u/root"
    },
    "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",
        "web_url": "http://localhost:3000/u/root"
      },
      "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",
      "web_url": "http://localhost:3000/u/root"
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
425 426
  }
]
D
Dmitriy Zaporozhets 已提交
427 428
```

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

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

```
POST /projects
```

Parameters:

439
- `name` (required) - new project name
D
Dmitriy Zaporozhets 已提交
440
- `path` (optional) - custom repository name for new project. By default generated based on name
441 442 443 444
- `namespace_id` (optional) - namespace for the new project (defaults to user)
- `description` (optional) - short project description
- `issues_enabled` (optional)
- `merge_requests_enabled` (optional)
445
- `builds_enabled` (optional)
446 447
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
448
- `container_registry_enabled` (optional)
449
- `shared_runners_enabled` (optional)
450 451 452
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
- `import_url` (optional)
453
- `public_builds` (optional)
454
- `only_allow_merge_if_build_succeeds` (optional)
455
- `enable_lfs` (optional)
456

457 458
### Create project for user

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

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

Parameters:

467 468 469 470 471
- `user_id` (required) - user_id of owner
- `name` (required) - new project name
- `description` (optional) - short project description
- `issues_enabled` (optional)
- `merge_requests_enabled` (optional)
472
- `builds_enabled` (optional)
473 474
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
475
- `container_registry_enabled` (optional)
476
- `shared_runners_enabled` (optional)
477 478 479
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
- `import_url` (optional)
480
- `public_builds` (optional)
481
- `only_allow_merge_if_build_succeeds` (optional)
482
- `enable_lfs` (optional)
A
Alex Denisov 已提交
483

484 485 486 487 488 489 490 491 492 493
### Edit project

Updates an existing project

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

Parameters:

494
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
495 496 497 498 499 500
- `name` (optional) - project name
- `path` (optional) - repository name for project
- `description` (optional) - short project description
- `default_branch` (optional)
- `issues_enabled` (optional)
- `merge_requests_enabled` (optional)
501
- `builds_enabled` (optional)
502 503
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
504
- `container_registry_enabled` (optional)
505
- `shared_runners_enabled` (optional)
506 507
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
508
- `public_builds` (optional)
509
- `only_allow_merge_if_build_succeeds` (optional)
510
- `enable_lfs` (optional)
511

512
On success, method returns 200 with the updated project. If parameters are
513 514
invalid, 400 is returned.

515 516 517 518 519 520 521 522 523 524
### Fork project

Forks a project into the user namespace of the authenticated user.

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

Parameters:

525
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
526

527 528
### Star a project

R
Robert Schilling 已提交
529 530
Stars a given project. Returns status code `201` and the project on success and
`304` if the project is already starred.
531 532 533 534 535 536 537

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

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
538
| `id`      | integer | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
539 540

```bash
541
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
```

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,
570
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
571 572
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
573 574
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
575
    "created_at": "2013-09-30T13:46:02Z",
576 577 578 579 580
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
581
    "updated_at": "2013-09-30T13:46:02Z"
582 583 584 585 586
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
587 588
  "star_count": 1,
  "public_builds": true,
589 590
  "shared_with_groups": [],
  "only_allow_merge_if_build_succeeds": false
591 592 593 594 595
}
```

### Unstar a project

R
Robert Schilling 已提交
596 597
Unstars a given project. Returns status code `200` and the project on success
and `304` if the project is not starred.
598 599

```
R
Robert Schilling 已提交
600
DELETE /projects/:id/star
601 602 603 604
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
605
| `id`      | integer | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
606 607

```bash
608
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
```

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,
637
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
638 639
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
640 641
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
642
    "created_at": "2013-09-30T13:46:02Z",
643 644 645 646 647
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
648
    "updated_at": "2013-09-30T13:46:02Z"
649 650 651 652 653
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
654 655
  "star_count": 0,
  "public_builds": true,
656 657
  "shared_with_groups": [],
  "only_allow_merge_if_build_succeeds": false
658 659 660
}
```

661 662
### Archive a project

663
Archives the project if the user is either admin or the project owner of this project. This action is
664 665
idempotent, thus archiving an already archived project will not change the project.

666 667 668
Status code 201 with the project as body is given when successful, in case the user doesn't
have the proper access rights, code 403 is returned. Status 404 is returned if the project
doesn't exist, or is hidden to the user.
669 670

```
671
POST /projects/:id/archive
672 673 674 675
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
676
| `id`      | integer | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
677 678

```bash
679
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/archive"
680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700
```

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 已提交
701
    "created_at": "2013-09-30T13:46:02Z"
702 703 704 705 706 707 708 709 710 711 712
  },
  "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,
713
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
714 715
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
716 717
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
718
    "created_at": "2013-09-30T13:46:02Z",
719 720 721 722 723
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
724
    "updated_at": "2013-09-30T13:46:02Z"
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740
  },
  "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,
741 742
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
743 744
  "shared_with_groups": [],
  "only_allow_merge_if_build_succeeds": false
745 746 747 748 749
}
```

### Unarchive a project

750
Unarchives the project if the user is either admin or the project owner of this project. This action is
751 752
idempotent, thus unarchiving an non-archived project will not change the project.

753 754 755
Status code 201 with the project as body is given when successful, in case the user doesn't
have the proper access rights, code 403 is returned. Status 404 is returned if the project
doesn't exist, or is hidden to the user.
756 757

```
S
Sergey Gnuskov 已提交
758
POST /projects/:id/unarchive
759 760 761 762
```

| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
763
| `id`      | integer | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
764 765

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

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 已提交
788
    "created_at": "2013-09-30T13:46:02Z"
789 790 791 792 793 794 795 796 797 798 799
  },
  "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,
800
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
801 802
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
803 804
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
805
    "created_at": "2013-09-30T13:46:02Z",
806 807 808 809 810
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
811
    "updated_at": "2013-09-30T13:46:02Z"
812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827
  },
  "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,
828 829
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
830 831
  "shared_with_groups": [],
  "only_allow_merge_if_build_succeeds": false
832 833 834
}
```

835
### Remove project
D
Dmitriy Zaporozhets 已提交
836

837
Removes a project including all associated resources (issues, merge requests etc.)
D
Dmitriy Zaporozhets 已提交
838 839 840 841 842 843 844

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

Parameters:

845
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
846

D
Douwe Maan 已提交
847 848 849 850 851 852 853 854 855 856 857 858
## 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:

859
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
D
Douwe Maan 已提交
860 861 862 863 864 865 866 867 868 869 870 871 872 873
- `file` (required) - The file to be uploaded

```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.


874
## Project members
875

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

878 879 880 881 882 883 884 885 886 887
### Share project with group

Allow to share project with group.

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

Parameters:

888
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
889 890 891
- `group_id` (required) - The ID of a group
- `group_access` (required) - Level of permissions for sharing

892 893
## Hooks

894 895 896
Also called Project Hooks and Webhooks.
These are different for [System Hooks](system_hooks.md) that are system wide.

897 898
### List project hooks

899
Get a list of project hooks.
M
miks 已提交
900 901 902 903 904 905 906

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

Parameters:

907
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
M
miks 已提交
908

909
### Get project hook
910

911
Get a specific hook for a project.
912 913 914 915 916

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

917
Parameters:
918

919 920
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `hook_id` (required) - The ID of a project hook
921

922 923 924 925
```json
{
  "id": 1,
  "url": "http://example.com/hook",
926
  "project_id": 3,
B
Ben Boeckel 已提交
927 928 929
  "push_events": true,
  "issues_events": true,
  "merge_requests_events": true,
930
  "tag_push_events": true,
B
Ben Boeckel 已提交
931
  "note_events": true,
932 933
  "build_events": true,
  "pipeline_events": true,
934
  "wiki_page_events": true,
B
Ben Boeckel 已提交
935
  "enable_ssl_verification": true,
936 937 938 939 940 941
  "created_at": "2012-10-12T17:04:47Z"
}
```

### Add project hook

942
Adds a hook to a specified project.
M
miks 已提交
943 944 945 946 947 948 949

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

Parameters:

950 951 952 953 954
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `url` (required) - The hook URL
- `push_events` - Trigger hook on push events
- `issues_events` - Trigger hook on issues events
- `merge_requests_events` - Trigger hook on merge_requests events
955
- `tag_push_events` - Trigger hook on push_tag events
956
- `note_events` - Trigger hook on note events
957 958
- `build_events` - Trigger hook on build events
- `pipeline_events` - Trigger hook on pipeline events
959
- `wiki_page_events` - Trigger hook on wiki page events
960
- `enable_ssl_verification` - Do SSL verification when triggering the hook
961

962 963
### Edit project hook

964
Edits a hook for a specified project.
965 966 967 968 969 970 971

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

Parameters:

972 973 974 975 976 977
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `hook_id` (required) - The ID of a project hook
- `url` (required) - The hook URL
- `push_events` - Trigger hook on push events
- `issues_events` - Trigger hook on issues events
- `merge_requests_events` - Trigger hook on merge_requests events
978
- `tag_push_events` - Trigger hook on push_tag events
979
- `note_events` - Trigger hook on note events
980 981
- `build_events` - Trigger hook on build events
- `pipeline_events` - Trigger hook on pipeline events
982
- `wiki_page_events` - Trigger hook on wiki page events
983
- `enable_ssl_verification` - Do SSL verification when triggering the hook
984

985
### Delete project hook
M
miks 已提交
986

987
Removes a hook from a project. This is an idempotent method and can be called multiple times.
988
Either the hook is available or not.
M
miks 已提交
989 990

```
991
DELETE /projects/:id/hooks/:hook_id
M
miks 已提交
992 993 994 995
```

Parameters:

996 997
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `hook_id` (required) - The ID of hook to delete
M
miks 已提交
998

999 1000
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.
1001 1002 1003

## Branches

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

1006 1007 1008 1009 1010 1011 1012 1013 1014 1015
### List branches

Lists all branches of a project.

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

Parameters:

1016
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
1017

M
Marin Jankovski 已提交
1018 1019 1020
```json
[
  {
J
Johannes Schleifenbaum 已提交
1021
    "name": "async",
M
Marin Jankovski 已提交
1022
    "commit": {
J
Johannes Schleifenbaum 已提交
1023
      "id": "a2b702edecdf41f07b42653eb1abe30ce98b9fca",
M
Miroslav Meca 已提交
1024 1025
      "parent_ids": [
        "3f94fc7c85061973edc9906ae170cc269b07ca55"
J
Johannes Schleifenbaum 已提交
1026
      ],
1027
      "message": "give Caolan credit where it's due (up top)",
M
Miroslav Meca 已提交
1028 1029
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1030
      "authored_date": "2010-12-08T21:28:50+00:00",
M
Miroslav Meca 已提交
1031 1032
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1033
      "committed_date": "2010-12-08T21:28:50+00:00"
M
Marin Jankovski 已提交
1034
    },
M
Miroslav Meca 已提交
1035 1036 1037
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1038 1039 1040 1041 1042
  },
  {
    "name": "gh-pages",
    "commit": {
      "id": "101c10a60019fe870d21868835f65c25d64968fc",
M
Miroslav Meca 已提交
1043 1044
      "parent_ids": [
          "9c15d2e26945a665131af5d7b6d30a06ba338aaa"
J
Johannes Schleifenbaum 已提交
1045
      ],
M
Marin Jankovski 已提交
1046
      "message": "Underscore.js 1.5.2",
M
Miroslav Meca 已提交
1047 1048
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1049
      "authored_date": "2013-09-07T12:58:21+00:00",
M
Miroslav Meca 已提交
1050 1051
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1052
      "committed_date": "2013-09-07T12:58:21+00:00"
M
Marin Jankovski 已提交
1053
    },
M
Miroslav Meca 已提交
1054 1055 1056
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1057 1058 1059
  }
]
```
1060

M
Miroslav Meca 已提交
1061
### Single branch
1062

M
Miroslav Meca 已提交
1063
A specific branch of a project.
1064 1065 1066 1067 1068 1069 1070

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

Parameters:

1071 1072
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
M
Miroslav Meca 已提交
1073 1074
- `developers_can_push` - Flag if developers can push to the branch.
- `developers_can_merge` - Flag if developers can merge to the branch.
1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085

### Protect single branch

Protects a single branch of a project.

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

Parameters:

1086 1087
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098

### Unprotect single branch

Unprotects a single branch of a project.

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

Parameters:

1099 1100
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
1101 1102 1103

## Admin fork relation

1104
Allows modification of the forked relationship between existing projects. Available only for admins.
1105 1106 1107 1108 1109 1110 1111 1112 1113

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

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

Parameters:

1114
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
1115
- `forked_from_id:` (required) - The ID of the project that was forked from
1116 1117 1118 1119 1120 1121 1122 1123 1124

### Delete an existing forked from relationship

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

Parameter:

1125
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
I
Izaak Alpert 已提交
1126 1127 1128

## Search for projects by name

1129
Search for projects by name which are accessible to the authenticated user.
I
Izaak Alpert 已提交
1130 1131 1132 1133 1134 1135 1136

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

Parameters:

1137 1138 1139 1140 1141
- `query` (required) - A string contained in the project name
- `per_page` (optional) - number of projects to return per page
- `page` (optional) - the page to retrieve
- `order_by` (optional) - Return requests ordered by `id`, `name`, `created_at` or `last_activity_at` fields
- `sort` (optional) - Return requests sorted in `asc` or `desc` order