projects.md 35.2 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
- `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
    "shared_with_groups": [],
88 89
    "only_allow_merge_if_build_succeeds": false,
    "request_access_enabled": false
N
Nihad Abbasov 已提交
90 91
  },
  {
M
Marin Jankovski 已提交
92
    "id": 6,
N
Nihad Abbasov 已提交
93
    "description": null,
M
Marin Jankovski 已提交
94 95
    "default_branch": "master",
    "public": false,
96
    "visibility_level": 0,
M
Marin Jankovski 已提交
97 98 99
    "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",
100 101 102 103
    "tag_list": [
      "example",
      "puppet"
    ],
J
Johannes Schleifenbaum 已提交
104
    "owner": {
M
Marin Jankovski 已提交
105 106 107
      "id": 4,
      "name": "Brightbox",
      "created_at": "2013-09-30T13:46:02Z"
N
Nihad Abbasov 已提交
108
    },
M
Marin Jankovski 已提交
109 110 111 112
    "name": "Puppet",
    "name_with_namespace": "Brightbox / Puppet",
    "path": "puppet",
    "path_with_namespace": "brightbox/puppet",
N
Nihad Abbasov 已提交
113
    "issues_enabled": true,
S
Stan Hu 已提交
114
    "open_issues_count": 1,
N
Nihad Abbasov 已提交
115
    "merge_requests_enabled": true,
116
    "builds_enabled": true,
N
Nihad Abbasov 已提交
117
    "wiki_enabled": true,
M
Marin Jankovski 已提交
118
    "snippets_enabled": false,
119
    "container_registry_enabled": false,
M
Marin Jankovski 已提交
120 121
    "created_at": "2013-09-30T13:46:02Z",
    "last_activity_at": "2013-09-30T13:46:02Z",
122
    "creator_id": 3,
J
Johannes Schleifenbaum 已提交
123
    "namespace": {
M
Marin Jankovski 已提交
124 125 126 127 128 129 130
      "created_at": "2013-09-30T13:46:02Z",
      "description": "",
      "id": 4,
      "name": "Brightbox",
      "owner_id": 1,
      "path": "brightbox",
      "updated_at": "2013-09-30T13:46:02Z"
131
    },
132 133 134 135 136 137 138 139 140 141
    "permissions": {
      "project_access": {
        "access_level": 10,
        "notification_level": 3
      },
      "group_access": {
        "access_level": 50,
        "notification_level": 3
      }
    },
S
sue445 已提交
142
    "archived": false,
T
Tomasz Maczukin 已提交
143 144 145 146
    "avatar_url": null,
    "shared_runners_enabled": true,
    "forks_count": 0,
    "star_count": 0,
147
    "runners_token": "b8547b1dc37721d05889db52fa2f02",
148
    "public_builds": true,
149
    "shared_with_groups": [],
150 151
    "only_allow_merge_if_build_succeeds": false,
    "request_access_enabled": false
N
Nihad Abbasov 已提交
152 153 154 155
  }
]
```

156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 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
Get a list of projects for which the authenticated user can see.

```
GET /projects/visible
```

Parameters:

- `archived` (optional) - if passed, limit by archived status
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
- `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

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

285
### List owned projects
D
Dmitriy Zaporozhets 已提交
286

287
Get a list of projects which are owned by the authenticated user.
D
Dmitriy Zaporozhets 已提交
288 289 290 291 292

```
GET /projects/owned
```

293 294 295
Parameters:

- `archived` (optional) - if passed, limit by archived status
296
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
297 298
- `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`
299 300 301 302 303 304 305 306 307 308 309 310 311
- `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
312
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
313 314
- `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`
315 316
- `search` (optional) - Return list of authorized projects according to a search criteria

317
### List ALL projects
D
Dmitriy Zaporozhets 已提交
318 319 320 321 322 323 324

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

```
GET /projects/all
```

325 326 327
Parameters:

- `archived` (optional) - if passed, limit by archived status
328
- `visibility` (optional) - if passed, limit by visibility `public`, `internal`, `private`
329 330 331 332
- `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

333
### Get single project
N
Nihad Abbasov 已提交
334

335
Get a specific project, identified by project ID or NAMESPACE/PROJECT_NAME, which is owned by the authenticated user.
M
Marin Jankovski 已提交
336
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 已提交
337 338 339 340 341 342 343

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

Parameters:

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

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

D
Dmitriy Zaporozhets 已提交
422 423
### Get project events

424
Get the events for the specified project.
D
Dmitriy Zaporozhets 已提交
425 426 427 428 429 430 431 432
Sorted from newest to latest

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

Parameters:

433
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
D
Dmitriy Zaporozhets 已提交
434 435

```json
J
Johannes Schleifenbaum 已提交
436 437 438 439 440 441 442 443 444
[
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 830,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
445 446 447 448 449 450 451 452 453 454
    "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 已提交
455 456 457 458 459 460 461 462
  },
  {
    "title": null,
    "project_id": 15,
    "action_name": "opened",
    "target_id": null,
    "target_type": null,
    "author_id": 1,
D
Dmitriy Zaporozhets 已提交
463 464 465 466 467 468 469 470
    "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"
    },
471
    "author_username": "john",
J
Johannes Schleifenbaum 已提交
472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496
    "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 已提交
497
    },
J
Johannes Schleifenbaum 已提交
498
    "target_title": null
D
Dmitriy Zaporozhets 已提交
499
  },
J
Johannes Schleifenbaum 已提交
500 501 502 503 504 505 506 507
  {
    "title": null,
    "project_id": 15,
    "action_name": "closed",
    "target_id": 840,
    "target_type": "Issue",
    "author_id": 1,
    "data": null,
D
Dmitriy Zaporozhets 已提交
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556
    "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 已提交
557 558
  }
]
D
Dmitriy Zaporozhets 已提交
559 560
```

561
### Create project
A
Alex Denisov 已提交
562

563
Creates a new project owned by the authenticated user.
A
Alex Denisov 已提交
564 565 566 567 568 569 570

```
POST /projects
```

Parameters:

571
- `name` (required) - new project name
D
Dmitriy Zaporozhets 已提交
572
- `path` (optional) - custom repository name for new project. By default generated based on name
573 574 575 576
- `namespace_id` (optional) - namespace for the new project (defaults to user)
- `description` (optional) - short project description
- `issues_enabled` (optional)
- `merge_requests_enabled` (optional)
577
- `builds_enabled` (optional)
578 579
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
580
- `container_registry_enabled` (optional)
581
- `shared_runners_enabled` (optional)
582 583 584
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
- `import_url` (optional)
585
- `public_builds` (optional)
586
- `only_allow_merge_if_build_succeeds` (optional)
587
- `lfs_enabled` (optional)
588
- `request_access_enabled` (optional) - Allow users to request member access.
589

590 591
### Create project for user

592
Creates a new project owned by the specified user. Available only for admins.
593 594 595 596 597 598 599

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

Parameters:

600 601 602 603 604
- `user_id` (required) - user_id of owner
- `name` (required) - new project name
- `description` (optional) - short project description
- `issues_enabled` (optional)
- `merge_requests_enabled` (optional)
605
- `builds_enabled` (optional)
606 607
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
608
- `container_registry_enabled` (optional)
609
- `shared_runners_enabled` (optional)
610 611 612
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
- `import_url` (optional)
613
- `public_builds` (optional)
614
- `only_allow_merge_if_build_succeeds` (optional)
615
- `lfs_enabled` (optional)
616
- `request_access_enabled` (optional) - Allow users to request member access.
A
Alex Denisov 已提交
617

618 619 620 621 622 623 624 625 626 627
### Edit project

Updates an existing project

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

Parameters:

628
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
629 630 631 632 633 634
- `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)
635
- `builds_enabled` (optional)
636 637
- `wiki_enabled` (optional)
- `snippets_enabled` (optional)
638
- `container_registry_enabled` (optional)
639
- `shared_runners_enabled` (optional)
640 641
- `public` (optional) - if `true` same as setting visibility_level = 20
- `visibility_level` (optional)
642
- `public_builds` (optional)
643
- `only_allow_merge_if_build_succeeds` (optional)
644
- `lfs_enabled` (optional)
645
- `request_access_enabled` (optional) - Allow users to request member access.
646

647
On success, method returns 200 with the updated project. If parameters are
648 649
invalid, 400 is returned.

650 651
### Fork project

652
Forks a project into the user namespace of the authenticated user or the one provided.
653 654 655 656 657 658 659

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

Parameters:

660
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
661
- `namespace` (optional) - The ID or path of the namespace that the project will be forked to
662

663 664
### Star a project

R
Robert Schilling 已提交
665 666
Stars a given project. Returns status code `201` and the project on success and
`304` if the project is already starred.
667 668 669 670 671 672 673

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

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

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

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,
706
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
707 708
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
709 710
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
711
    "created_at": "2013-09-30T13:46:02Z",
712 713 714 715 716
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
717
    "updated_at": "2013-09-30T13:46:02Z"
718 719 720 721 722
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
723 724
  "star_count": 1,
  "public_builds": true,
725
  "shared_with_groups": [],
726 727
  "only_allow_merge_if_build_succeeds": false,
  "request_access_enabled": false
728 729 730 731 732
}
```

### Unstar a project

R
Robert Schilling 已提交
733 734
Unstars a given project. Returns status code `200` and the project on success
and `304` if the project is not starred.
735 736

```
R
Robert Schilling 已提交
737
DELETE /projects/:id/star
738 739 740 741
```

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

```bash
745
curl --request DELETE --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/5/star"
746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773
```

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,
774
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
775 776
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
777 778
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
779
    "created_at": "2013-09-30T13:46:02Z",
780 781 782 783 784
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
785
    "updated_at": "2013-09-30T13:46:02Z"
786 787 788 789 790
  },
  "archived": true,
  "avatar_url": "http://example.com/uploads/project/avatar/3/uploads/avatar.png",
  "shared_runners_enabled": true,
  "forks_count": 0,
791 792
  "star_count": 0,
  "public_builds": true,
793
  "shared_with_groups": [],
794 795
  "only_allow_merge_if_build_succeeds": false,
  "request_access_enabled": false
796 797 798
}
```

799 800
### Archive a project

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

804 805 806
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.
807 808

```
809
POST /projects/:id/archive
810 811 812 813
```

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

```bash
817
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/archive"
818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838
```

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 已提交
839
    "created_at": "2013-09-30T13:46:02Z"
840 841 842 843 844 845 846 847 848 849 850
  },
  "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,
851
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
852 853
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
854 855
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
856
    "created_at": "2013-09-30T13:46:02Z",
857 858 859 860 861
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
862
    "updated_at": "2013-09-30T13:46:02Z"
863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878
  },
  "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,
879 880
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
881
  "shared_with_groups": [],
882 883
  "only_allow_merge_if_build_succeeds": false,
  "request_access_enabled": false
884 885 886 887 888
}
```

### Unarchive a project

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

892 893 894
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.
895 896

```
S
Sergey Gnuskov 已提交
897
POST /projects/:id/unarchive
898 899 900 901
```

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

```bash
905
curl --request POST --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" "https://gitlab.example.com/api/v3/projects/unarchive"
906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926
```

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 已提交
927
    "created_at": "2013-09-30T13:46:02Z"
928 929 930 931 932 933 934 935 936 937 938
  },
  "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,
939
  "container_registry_enabled": false,
B
Ben Boeckel 已提交
940 941
  "created_at": "2013-09-30T13:46:02Z",
  "last_activity_at": "2013-09-30T13:46:02Z",
942 943
  "creator_id": 3,
  "namespace": {
B
Ben Boeckel 已提交
944
    "created_at": "2013-09-30T13:46:02Z",
945 946 947 948 949
    "description": "",
    "id": 3,
    "name": "Diaspora",
    "owner_id": 1,
    "path": "diaspora",
B
Ben Boeckel 已提交
950
    "updated_at": "2013-09-30T13:46:02Z"
951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966
  },
  "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,
967 968
  "runners_token": "b8bc4a7a29eb76ea83cf79e4908c2b",
  "public_builds": true,
969
  "shared_with_groups": [],
970 971
  "only_allow_merge_if_build_succeeds": false,
  "request_access_enabled": false
972 973 974
}
```

975
### Remove project
D
Dmitriy Zaporozhets 已提交
976

977
Removes a project including all associated resources (issues, merge requests etc.)
D
Dmitriy Zaporozhets 已提交
978 979 980 981 982 983 984

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

Parameters:

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

D
Douwe Maan 已提交
987 988 989 990 991 992 993 994 995 996 997 998
## 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:

999
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
D
Douwe Maan 已提交
1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013
- `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.


1014
## Project members
1015

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

1018 1019 1020 1021 1022 1023 1024 1025 1026 1027
### Share project with group

Allow to share project with group.

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

Parameters:

1028
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
1029 1030
- `group_id` (required) - The ID of a group
- `group_access` (required) - Level of permissions for sharing
1031
- `expires_at` - Share expiration date in ISO 8601 format: 2016-09-26
1032

1033 1034
## Hooks

1035 1036 1037
Also called Project Hooks and Webhooks.
These are different for [System Hooks](system_hooks.md) that are system wide.

1038 1039
### List project hooks

1040
Get a list of project hooks.
M
miks 已提交
1041 1042 1043 1044 1045 1046 1047

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

Parameters:

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

1050
### Get project hook
1051

1052
Get a specific hook for a project.
1053 1054 1055 1056 1057

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

1058
Parameters:
1059

1060 1061
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `hook_id` (required) - The ID of a project hook
1062

1063 1064 1065 1066
```json
{
  "id": 1,
  "url": "http://example.com/hook",
1067
  "project_id": 3,
B
Ben Boeckel 已提交
1068 1069 1070
  "push_events": true,
  "issues_events": true,
  "merge_requests_events": true,
1071
  "tag_push_events": true,
B
Ben Boeckel 已提交
1072
  "note_events": true,
1073 1074
  "build_events": true,
  "pipeline_events": true,
1075
  "wiki_page_events": true,
B
Ben Boeckel 已提交
1076
  "enable_ssl_verification": true,
1077 1078 1079 1080 1081 1082
  "created_at": "2012-10-12T17:04:47Z"
}
```

### Add project hook

1083
Adds a hook to a specified project.
M
miks 已提交
1084 1085 1086 1087 1088 1089 1090

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

Parameters:

1091 1092 1093 1094 1095
- `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
1096
- `tag_push_events` - Trigger hook on push_tag events
1097
- `note_events` - Trigger hook on note events
1098 1099
- `build_events` - Trigger hook on build events
- `pipeline_events` - Trigger hook on pipeline events
1100
- `wiki_page_events` - Trigger hook on wiki page events
1101
- `enable_ssl_verification` - Do SSL verification when triggering the hook
1102

1103 1104
### Edit project hook

1105
Edits a hook for a specified project.
1106 1107 1108 1109 1110 1111 1112

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

Parameters:

1113 1114 1115 1116 1117 1118
- `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
1119
- `tag_push_events` - Trigger hook on push_tag events
1120
- `note_events` - Trigger hook on note events
1121 1122
- `build_events` - Trigger hook on build events
- `pipeline_events` - Trigger hook on pipeline events
1123
- `wiki_page_events` - Trigger hook on wiki page events
1124
- `enable_ssl_verification` - Do SSL verification when triggering the hook
1125

1126
### Delete project hook
M
miks 已提交
1127

1128
Removes a hook from a project. This is an idempotent method and can be called multiple times.
1129
Either the hook is available or not.
M
miks 已提交
1130 1131

```
1132
DELETE /projects/:id/hooks/:hook_id
M
miks 已提交
1133 1134 1135 1136
```

Parameters:

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

1140 1141
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.
1142 1143 1144

## Branches

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

1147 1148 1149 1150 1151 1152 1153 1154 1155 1156
### List branches

Lists all branches of a project.

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

Parameters:

1157
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
1158

M
Marin Jankovski 已提交
1159 1160 1161
```json
[
  {
J
Johannes Schleifenbaum 已提交
1162
    "name": "async",
M
Marin Jankovski 已提交
1163
    "commit": {
J
Johannes Schleifenbaum 已提交
1164
      "id": "a2b702edecdf41f07b42653eb1abe30ce98b9fca",
M
Miroslav Meca 已提交
1165 1166
      "parent_ids": [
        "3f94fc7c85061973edc9906ae170cc269b07ca55"
J
Johannes Schleifenbaum 已提交
1167
      ],
1168
      "message": "give Caolan credit where it's due (up top)",
M
Miroslav Meca 已提交
1169 1170
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1171
      "authored_date": "2010-12-08T21:28:50+00:00",
M
Miroslav Meca 已提交
1172 1173
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
J
Johannes Schleifenbaum 已提交
1174
      "committed_date": "2010-12-08T21:28:50+00:00"
M
Marin Jankovski 已提交
1175
    },
M
Miroslav Meca 已提交
1176 1177 1178
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1179 1180 1181 1182 1183
  },
  {
    "name": "gh-pages",
    "commit": {
      "id": "101c10a60019fe870d21868835f65c25d64968fc",
M
Miroslav Meca 已提交
1184 1185
      "parent_ids": [
          "9c15d2e26945a665131af5d7b6d30a06ba338aaa"
J
Johannes Schleifenbaum 已提交
1186
      ],
M
Marin Jankovski 已提交
1187
      "message": "Underscore.js 1.5.2",
M
Miroslav Meca 已提交
1188 1189
      "author_name": "Jeremy Ashkenas",
      "author_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1190
      "authored_date": "2013-09-07T12:58:21+00:00",
M
Miroslav Meca 已提交
1191 1192
      "committer_name": "Jeremy Ashkenas",
      "committer_email": "jashkenas@example.com",
B
Ben Boeckel 已提交
1193
      "committed_date": "2013-09-07T12:58:21+00:00"
M
Marin Jankovski 已提交
1194
    },
M
Miroslav Meca 已提交
1195 1196 1197
    "protected": false,
    "developers_can_push": false,
    "developers_can_merge": false
M
Marin Jankovski 已提交
1198 1199 1200
  }
]
```
1201

M
Miroslav Meca 已提交
1202
### Single branch
1203

M
Miroslav Meca 已提交
1204
A specific branch of a project.
1205 1206 1207 1208 1209 1210 1211

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

Parameters:

1212 1213
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
M
Miroslav Meca 已提交
1214 1215
- `developers_can_push` - Flag if developers can push to the branch.
- `developers_can_merge` - Flag if developers can merge to the branch.
1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226

### Protect single branch

Protects a single branch of a project.

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

Parameters:

1227 1228
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239

### Unprotect single branch

Unprotects a single branch of a project.

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

Parameters:

1240 1241
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of a project
- `branch` (required) - The name of the branch.
1242 1243 1244

## Admin fork relation

1245
Allows modification of the forked relationship between existing projects. Available only for admins.
1246 1247 1248 1249 1250 1251 1252 1253 1254

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

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

Parameters:

1255
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
1256
- `forked_from_id:` (required) - The ID of the project that was forked from
1257 1258 1259 1260 1261 1262 1263 1264 1265

### Delete an existing forked from relationship

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

Parameter:

1266
- `id` (required) - The ID or NAMESPACE/PROJECT_NAME of the project to be forked
I
Izaak Alpert 已提交
1267 1268 1269

## Search for projects by name

1270
Search for projects by name which are accessible to the authenticated user.
I
Izaak Alpert 已提交
1271 1272 1273 1274 1275 1276 1277

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

Parameters:

1278 1279 1280 1281 1282
- `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