projects.md 41.4 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 |
39

N
Nihad Abbasov 已提交
40 41 42
```json
[
  {
M
Marin Jankovski 已提交
43
    "id": 4,
N
Nihad Abbasov 已提交
44 45
    "description": null,
    "default_branch": "master",
M
Marin Jankovski 已提交
46
    "public": false,
47
    "visibility_level": 0,
M
Marin Jankovski 已提交
48 49 50
    "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",
51 52 53 54
    "tag_list": [
      "example",
      "disapora client"
    ],
N
Nihad Abbasov 已提交
55
    "owner": {
M
Marin Jankovski 已提交
56 57
      "id": 3,
      "name": "Diaspora",
B
Ben Boeckel 已提交
58
      "created_at": "2013-09-30T13:46:02Z"
N
Nihad Abbasov 已提交
59
    },
M
Marin Jankovski 已提交
60 61 62 63 64
    "name": "Diaspora Client",
    "name_with_namespace": "Diaspora / Diaspora Client",
    "path": "diaspora-client",
    "path_with_namespace": "diaspora/diaspora-client",
    "issues_enabled": true,
S
Stan Hu 已提交
65
    "open_issues_count": 1,
M
Marin Jankovski 已提交
66
    "merge_requests_enabled": true,
67
    "builds_enabled": true,
N
Nihad Abbasov 已提交
68
    "wiki_enabled": true,
M
Marin Jankovski 已提交
69
    "snippets_enabled": false,
70
    "container_registry_enabled": false,
B
Ben Boeckel 已提交
71 72
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
73
    "creator_id": 3,
M
Marin Jankovski 已提交
74
    "namespace": {
B
Ben Boeckel 已提交
75
      "created_at": "2013-09-30T13:46:02Z",
M
Marin Jankovski 已提交
76 77 78 79 80
      "description": "",
      "id": 3,
      "name": "Diaspora",
      "owner_id": 1,
      "path": "diaspora",
B
Ben Boeckel 已提交
81
      "updated_at": "2013-09-30T13:46:02Z"
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 131 132 133 134
      "created_at": "2013-09-30T13:46:02Z",
      "description": "",
      "id": 4,
      "name": "Brightbox",
      "owner_id": 1,
      "path": "brightbox",
      "updated_at": "2013-09-30T13:46:02Z"
135
    },
136 137 138 139 140 141 142 143 144 145
    "permissions": {
      "project_access": {
        "access_level": 10,
        "notification_level": 3
      },
      "group_access": {
        "access_level": 50,
        "notification_level": 3
      }
    },
S
sue445 已提交
146
    "archived": false,
T
Tomasz Maczukin 已提交
147 148 149 150
    "avatar_url": null,
    "shared_runners_enabled": true,
    "forks_count": 0,
    "star_count": 0,
151
    "runners_token": "b8547b1dc37721d05889db52fa2f02",
152
    "public_builds": true,
153
    "shared_with_groups": [],
154
    "only_allow_merge_if_build_succeeds": false,
155
    "only_allow_merge_if_all_discussions_are_resolved": false,
156
    "request_access_enabled": false
N
Nihad Abbasov 已提交
157 158 159 160
  }
]
```

161
Get a list of projects which the authenticated user can see.
162 163 164 165 166 167 168

```
GET /projects/visible
```

Parameters:

169 170 171 172 173 174 175 176
| 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 |
177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 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 286 287 288 289 290 291 292

```json
[
  {
    "id": 4,
    "description": null,
    "default_branch": "master",
    "public": false,
    "visibility_level": 0,
    "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",
    "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,
    "builds_enabled": true,
    "wiki_enabled": true,
    "snippets_enabled": false,
    "container_registry_enabled": false,
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
    "creator_id": 3,
    "namespace": {
      "created_at": "2013-09-30T13:46:02Z",
      "description": "",
      "id": 3,
      "name": "Diaspora",
      "owner_id": 1,
      "path": "diaspora",
      "updated_at": "2013-09-30T13:46:02Z"
    },
    "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_builds": true,
    "shared_with_groups": []
  },
  {
    "id": 6,
    "description": null,
    "default_branch": "master",
    "public": false,
    "visibility_level": 0,
    "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",
    "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,
    "builds_enabled": true,
    "wiki_enabled": true,
    "snippets_enabled": false,
    "container_registry_enabled": false,
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
    "creator_id": 3,
    "namespace": {
      "created_at": "2013-09-30T13:46:02Z",
      "description": "",
      "id": 4,
      "name": "Brightbox",
      "owner_id": 1,
      "path": "brightbox",
      "updated_at": "2013-09-30T13:46:02Z"
    },
    "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_builds": true,
    "shared_with_groups": []
  }
]
```

293
### List owned projects
D
Dmitriy Zaporozhets 已提交
294

295
Get a list of projects which are owned by the authenticated user.
D
Dmitriy Zaporozhets 已提交
296 297 298 299 300

```
GET /projects/owned
```

301 302
Parameters:

303 304 305 306 307 308 309
| 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 |
310 311 312 313 314 315 316 317 318 319 320

### List starred projects

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

```
GET /projects/starred
```

Parameters:

321 322 323 324 325 326 327
| 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 |
328

329
### List ALL projects
D
Dmitriy Zaporozhets 已提交
330 331 332 333 334 335 336

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

```
GET /projects/all
```

337 338
Parameters:

339 340 341 342 343 344 345
| 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 |
346

347
### Get single project
N
Nihad Abbasov 已提交
348

349
Get a specific project, identified by project ID or NAMESPACE/PROJECT_NAME, which is owned by the authenticated user.
M
Marin Jankovski 已提交
350
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 已提交
351 352 353 354 355 356 357

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

Parameters:

358 359 360
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
N
Nihad Abbasov 已提交
361

A
Alex Denisov 已提交
362 363
```json
{
M
Marin Jankovski 已提交
364
  "id": 3,
A
Alex Denisov 已提交
365
  "description": null,
M
Marin Jankovski 已提交
366 367
  "default_branch": "master",
  "public": false,
368
  "visibility_level": 0,
M
Marin Jankovski 已提交
369 370 371
  "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",
372 373 374 375
  "tag_list": [
    "example",
    "disapora project"
  ],
A
Alex Denisov 已提交
376
  "owner": {
M
Marin Jankovski 已提交
377 378
    "id": 3,
    "name": "Diaspora",
B
Ben Boeckel 已提交
379
    "created_at": "2013-09-30T13:46:02Z"
A
Alex Denisov 已提交
380
  },
M
Marin Jankovski 已提交
381 382 383 384
  "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 已提交
385
  "issues_enabled": true,
S
Stan Hu 已提交
386
  "open_issues_count": 1,
A
Alex Denisov 已提交
387
  "merge_requests_enabled": true,
388
  "builds_enabled": true,
A
Alex Denisov 已提交
389
  "wiki_enabled": true,
M
Marin Jankovski 已提交
390
  "snippets_enabled": false,
391
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
392 393
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
394
  "creator_id": 3,
M
Marin Jankovski 已提交
395
  "namespace": {
B
Ben Boeckel 已提交
396
    "created_at": "2013-09-30T13:46:02Z",
M
Marin Jankovski 已提交
397 398 399 400 401
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
402
    "updated_at": "2013-09-30T13:46:02Z"
J
Johannes Schleifenbaum 已提交
403
  },
D
Dmitriy Zaporozhets 已提交
404 405 406 407 408 409 410 411 412
  "permissions": {
    "project_access": {
      "access_level": 10,
      "notification_level": 3
    },
    "group_access": {
      "access_level": 50,
      "notification_level": 3
    }
413
  },
S
sue445 已提交
414
  "archived": false,
T
Tomasz Maczukin 已提交
415 416 417 418
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
  "star_count": 0,
419 420 421 422 423 424 425 426 427 428 429 430 431
  "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
    }
432
  ],
433
  "only_allow_merge_if_build_succeeds": false,
434
  "only_allow_merge_if_all_discussions_are_resolved": false,
435
  "request_access_enabled": false
A
Alex Denisov 已提交
436 437 438
}
```

D
Dmitriy Zaporozhets 已提交
439 440
### Get project events

441
Get the events for the specified project.
R
Rémy Coutable 已提交
442
Sorted from newest to oldest
D
Dmitriy Zaporozhets 已提交
443 444 445 446 447 448 449

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

Parameters:

450 451 452
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
D
Dmitriy Zaporozhets 已提交
453 454

```json
J
Johannes Schleifenbaum 已提交
455 456 457 458 459 460 461 462 463
[
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 830,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
464 465 466 467 468 469 470
    "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",
471
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
472 473
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
474 475 476 477 478 479 480 481
  },
  {
    "title": null,
    "project_id": 15,
    "action_name": "opened",
    "target_id": null,
    "target_type": null,
    "author_id": 1,
D
Dmitriy Zaporozhets 已提交
482 483 484 485 486 487
    "author": {
      "name": "Dmitriy Zaporozhets",
      "username": "root",
      "id": 1,
      "state": "active",
      "avatar_url": "http://localhost:3000/uploads/user/avatar/1/fox_avatar.png",
488
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
489
    },
490
    "author_username": "john",
J
Johannes Schleifenbaum 已提交
491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515
    "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 已提交
516
    },
J
Johannes Schleifenbaum 已提交
517
    "target_title": null
D
Dmitriy Zaporozhets 已提交
518
  },
J
Johannes Schleifenbaum 已提交
519 520 521 522 523 524 525 526
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 840,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
527 528 529 530 531 532 533
    "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",
534
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
    },
    "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",
558
        "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
559 560 561 562 563 564 565 566 567 568 569 570 571 572
      },
      "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",
573
      "web_url": "http://localhost:3000/root"
D
Dmitriy Zaporozhets 已提交
574 575
    },
    "author_username": "root"
J
Johannes Schleifenbaum 已提交
576 577
  }
]
D
Dmitriy Zaporozhets 已提交
578 579
```

580
### Create project
A
Alex Denisov 已提交
581

582
Creates a new project owned by the authenticated user.
A
Alex Denisov 已提交
583 584 585 586 587 588 589

```
POST /projects
```

Parameters:

590 591 592 593 594 595 596 597 598 599 600 601 602 603
| 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 |
| `public` | boolean | no | If `true`, the same as setting `visibility_level` to 20 |
604
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
605 606 607
| `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 |
608
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
609 610
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
611

612 613
### Create project for user

614
Creates a new project owned by the specified user. Available only for admins.
615 616 617 618 619 620 621

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

Parameters:

622 623 624 625 626 627 628 629 630 631 632 633 634 635 636
| 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 |
| `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 |
| `public` | boolean | no | If `true`, the same as setting `visibility_level` to 20 |
637
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
638 639 640
| `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 |
641
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
642 643
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
A
Alex Denisov 已提交
644

645 646 647 648 649 650 651 652 653 654
### Edit project

Updates an existing project

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

Parameters:

655 656 657 658 659 660 661 662 663 664 665 666 667 668
| 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 |
| `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 |
| `public` | boolean | no | If `true`, the same as setting `visibility_level` to 20 |
669
| `visibility_level` | integer | no | See [project visibility level](#project-visibility-level) |
670 671 672
| `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 |
673
| `only_allow_merge_if_all_discussions_are_resolved` | boolean | no | Set whether merge requests can only be merged when all the discussions are resolved |
674 675
| `lfs_enabled` | boolean | no | Enable LFS |
| `request_access_enabled` | boolean | no | Allow users to request member access |
676

677
On success, method returns 200 with the updated project. If parameters are
678 679
invalid, 400 is returned.

680 681
### Fork project

682
Forks a project into the user namespace of the authenticated user or the one provided.
683 684 685 686 687 688 689

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

Parameters:

690 691 692 693
| 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 |
694

695 696
### Star a project

R
Robert Schilling 已提交
697 698
Stars a given project. Returns status code `201` and the project on success and
`304` if the project is already starred.
699 700 701 702 703

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

704 705
Parameters:

706 707
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
708
| `id` | integer/string | yes | The ID or NAMESPACE/PROJECT_NAME of the project |
709 710

```bash
711
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739
```

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,
740
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
741 742
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
743 744
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
745
    "created_at": "2013-09-30T13:46:02Z",
746 747 748 749 750
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
751
    "updated_at": "2013-09-30T13:46:02Z"
752 753 754 755 756
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
757 758
  "star_count": 1,
  "public_builds": true,
759
  "shared_with_groups": [],
760
  "only_allow_merge_if_build_succeeds": false,
761
  "only_allow_merge_if_all_discussions_are_resolved": false,
762
  "request_access_enabled": false
763 764 765 766 767
}
```

### Unstar a project

R
Robert Schilling 已提交
768 769
Unstars a given project. Returns status code `200` and the project on success
and `304` if the project is not starred.
770 771

```
R
Robert Schilling 已提交
772
DELETE /projects/:id/star
773 774 775 776
```

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

```bash
780
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808
```

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,
809
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
810 811
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
812 813
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
814
    "created_at": "2013-09-30T13:46:02Z",
815 816 817 818 819
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
820
    "updated_at": "2013-09-30T13:46:02Z"
821 822 823 824 825
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
826 827
  "star_count": 0,
  "public_builds": true,
828
  "shared_with_groups": [],
829
  "only_allow_merge_if_build_succeeds": false,
830
  "only_allow_merge_if_all_discussions_are_resolved": false,
831
  "request_access_enabled": false
832 833 834
}
```

835 836
### Archive a project

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

840 841 842
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.
843 844

```
845
POST /projects/:id/archive
846 847 848 849
```

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

```bash
853
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/archive"
854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874
```

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 已提交
875
    "created_at": "2013-09-30T13:46:02Z"
876 877 878 879 880 881 882 883 884 885 886
  },
  "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,
887
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
888 889
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
890 891
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
892
    "created_at": "2013-09-30T13:46:02Z",
893 894 895 896 897
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
898
    "updated_at": "2013-09-30T13:46:02Z"
899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914
  },
  "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,
915 916
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
917
  "shared_with_groups": [],
918
  "only_allow_merge_if_build_succeeds": false,
919
  "only_allow_merge_if_all_discussions_are_resolved": false,
920
  "request_access_enabled": false
921 922 923 924 925
}
```

### Unarchive a project

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

929 930 931
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.
932 933

```
S
Sergey Gnuskov 已提交
934
POST /projects/:id/unarchive
935 936 937 938
```

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

```bash
942
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/unarchive"
943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963
```

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 已提交
964
    "created_at": "2013-09-30T13:46:02Z"
965 966 967 968 969 970 971 972 973 974 975
  },
  "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,
976
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
977 978
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
979 980
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
981
    "created_at": "2013-09-30T13:46:02Z",
982 983 984 985 986
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
987
    "updated_at": "2013-09-30T13:46:02Z"
988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003
  },
  "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,
1004 1005
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
1006
  "shared_with_groups": [],
1007
  "only_allow_merge_if_build_succeeds": false,
1008
  "only_allow_merge_if_all_discussions_are_resolved": false,
1009
  "request_access_enabled": false
1010 1011 1012
}
```

1013
### Remove project
D
Dmitriy Zaporozhets 已提交
1014

1015
Removes a project including all associated resources (issues, merge requests etc.)
D
Dmitriy Zaporozhets 已提交
1016 1017 1018 1019 1020 1021 1022

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

Parameters:

1023 1024 1025
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
1026

D
Douwe Maan 已提交
1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038
## 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:

1039 1040 1041 1042
| 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 已提交
1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055

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


1056
## Project members
1057

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

1060 1061 1062 1063 1064 1065 1066 1067 1068 1069
### Share project with group

Allow to share project with group.

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

Parameters:

1070 1071 1072 1073 1074 1075
| 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 |
1076

1077 1078
## Hooks

1079 1080 1081
Also called Project Hooks and Webhooks.
These are different for [System Hooks](system_hooks.md) that are system wide.

1082 1083
### List project hooks

1084
Get a list of project hooks.
M
miks 已提交
1085 1086 1087 1088 1089 1090 1091

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

Parameters:

1092 1093 1094
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
M
miks 已提交
1095

1096
### Get project hook
1097

1098
Get a specific hook for a project.
1099 1100 1101 1102 1103

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

1104
Parameters:
1105

1106 1107 1108 1109
| 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 |
1110

1111 1112 1113 1114
```json
{
  "id": 1,
  "url": "http://example.com/hook",
1115
  "project_id": 3,
B
Ben Boeckel 已提交
1116 1117 1118
  "push_events": true,
  "issues_events": true,
  "merge_requests_events": true,
1119
  "tag_push_events": true,
B
Ben Boeckel 已提交
1120
  "note_events": true,
1121 1122
  "build_events": true,
  "pipeline_events": true,
1123
  "wiki_page_events": true,
B
Ben Boeckel 已提交
1124
  "enable_ssl_verification": true,
1125 1126 1127 1128 1129 1130
  "created_at": "2012-10-12T17:04:47Z"
}
```

### Add project hook

1131
Adds a hook to a specified project.
M
miks 已提交
1132 1133 1134 1135 1136 1137 1138

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

Parameters:

1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151
| 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 |
1152
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
1153

1154 1155
### Edit project hook

1156
Edits a hook for a specified project.
1157 1158 1159 1160 1161 1162 1163

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

Parameters:

1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177
| 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 |
1178
| `token` | string | no | Secret token to validate received payloads; this will not be returned in the response |
1179

1180
### Delete project hook
M
miks 已提交
1181

1182
Removes a hook from a project. This is an idempotent method and can be called multiple times.
1183
Either the hook is available or not.
M
miks 已提交
1184 1185

```
1186
DELETE /projects/:id/hooks/:hook_id
M
miks 已提交
1187 1188 1189 1190
```

Parameters:

1191 1192 1193 1194
| 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 已提交
1195

1196 1197
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.
1198 1199 1200

## Branches

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

1203 1204 1205 1206 1207 1208 1209 1210 1211 1212
### List branches

Lists all branches of a project.

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

Parameters:

1213 1214 1215
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
1216

M
Marin Jankovski 已提交
1217 1218 1219
```json
[
  {
J
Johannes Schleifenbaum 已提交
1220
    "name": "async",
M
Marin Jankovski 已提交
1221
    "commit": {
J
Johannes Schleifenbaum 已提交
1222
      "id": "a2b702edecdf41f07b42653eb1abe30ce98b9fca",
M
Miroslav Meca 已提交
1223 1224
      "parent_ids": [
        "3f94fc7c85061973edc9906ae170cc269b07ca55"
J
Johannes Schleifenbaum 已提交
1225
      ],
1226
      "message": "give Caolan credit where it's due (up top)",
M
Miroslav Meca 已提交
1227 1228
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1229
      "authored_date": "2010-12-08T21:28:50+00:00",
M
Miroslav Meca 已提交
1230 1231
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1232
      "committed_date": "2010-12-08T21:28:50+00:00"
M
Marin Jankovski 已提交
1233
    },
M
Miroslav Meca 已提交
1234 1235 1236
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1237 1238 1239 1240 1241
  },
  {
    "name": "gh-pages",
    "commit": {
      "id": "101c10a60019fe870d21868835f65c25d64968fc",
M
Miroslav Meca 已提交
1242 1243
      "parent_ids": [
          "9c15d2e26945a665131af5d7b6d30a06ba338aaa"
J
Johannes Schleifenbaum 已提交
1244
      ],
M
Marin Jankovski 已提交
1245
      "message": "Underscore.js 1.5.2",
M
Miroslav Meca 已提交
1246 1247
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1248
      "authored_date": "2013-09-07T12:58:21+00:00",
M
Miroslav Meca 已提交
1249 1250
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1251
      "committed_date": "2013-09-07T12:58:21+00:00"
M
Marin Jankovski 已提交
1252
    },
M
Miroslav Meca 已提交
1253 1254 1255
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1256 1257 1258
  }
]
```
1259

M
Miroslav Meca 已提交
1260
### Single branch
1261

M
Miroslav Meca 已提交
1262
A specific branch of a project.
1263 1264 1265 1266 1267 1268 1269

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

Parameters:

1270 1271 1272 1273 1274 1275
| 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 |
1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286

### Protect single branch

Protects a single branch of a project.

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

Parameters:

1287 1288 1289 1290
| 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 |
1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301

### Unprotect single branch

Unprotects a single branch of a project.

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

Parameters:

1302 1303 1304 1305
| 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 |
1306 1307 1308

## Admin fork relation

1309
Allows modification of the forked relationship between existing projects. Available only for admins.
1310 1311 1312 1313 1314 1315 1316 1317 1318

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

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

Parameters:

1319 1320 1321 1322
| 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 |
1323 1324 1325 1326 1327 1328 1329 1330 1331

### Delete an existing forked from relationship

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

Parameter:

1332 1333 1334
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
| `id` | integer/string | yes | The ID of the project or NAMESPACE/PROJECT_NAME |
I
Izaak Alpert 已提交
1335 1336 1337

## Search for projects by name

1338
Search for projects by name which are accessible to the authenticated user.
I
Izaak Alpert 已提交
1339 1340 1341 1342 1343 1344 1345

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

Parameters:

1346 1347
| Attribute | Type | Required | Description |
| --------- | ---- | -------- | ----------- |
1348 1349
| `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 |
1350
| `sort` | string | no | Return requests sorted in `asc` or `desc` order |