2012-07-05 15:57:45 +02:00
|
|
|
## List projects
|
|
|
|
|
2012-08-14 18:54:25 +02:00
|
|
|
Get a list of projects owned by the authenticated user.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects
|
|
|
|
```
|
|
|
|
|
|
|
|
```json
|
|
|
|
[
|
|
|
|
{
|
|
|
|
"id": 3,
|
|
|
|
"name": "rails",
|
|
|
|
"description": null,
|
|
|
|
"default_branch": "master",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
2012-12-10 23:46:31 +01:00
|
|
|
"username": "john_smith",
|
2012-07-05 15:57:45 +02:00
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": false,
|
|
|
|
"merge_requests_enabled": false,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-23T08:05:02Z"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "gitlab",
|
|
|
|
"description": null,
|
|
|
|
"default_branch": "api",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
2012-12-10 23:46:31 +01:00
|
|
|
"username": "john_smith",
|
2012-07-05 15:57:45 +02:00
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": true,
|
|
|
|
"merge_requests_enabled": true,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-30T12:49:20Z"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
```
|
|
|
|
|
|
|
|
## Single project
|
|
|
|
|
2012-08-14 18:54:25 +02:00
|
|
|
Get a specific project, identified by project ID, which is owned by the authentication user.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-07-05 15:57:45 +02:00
|
|
|
|
2012-08-31 09:25:36 +02:00
|
|
|
```json
|
|
|
|
{
|
|
|
|
"id": 5,
|
|
|
|
"name": "gitlab",
|
|
|
|
"description": null,
|
|
|
|
"default_branch": "api",
|
|
|
|
"owner": {
|
|
|
|
"id": 1,
|
2012-12-10 23:46:31 +01:00
|
|
|
"username": "john_smith",
|
2012-08-31 09:25:36 +02:00
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z"
|
|
|
|
},
|
|
|
|
"private": true,
|
|
|
|
"issues_enabled": true,
|
|
|
|
"merge_requests_enabled": true,
|
|
|
|
"wall_enabled": true,
|
|
|
|
"wiki_enabled": true,
|
|
|
|
"created_at": "2012-05-30T12:49:20Z"
|
|
|
|
}
|
|
|
|
```
|
|
|
|
|
|
|
|
## Create project
|
|
|
|
|
|
|
|
Create new project owned by user
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
|
|
|
+ `name` (required) - new project name
|
2012-09-20 14:34:07 +02:00
|
|
|
+ `description` (optional) - short project description
|
2012-09-03 17:00:24 +02:00
|
|
|
+ `default_branch` (optional) - 'master' by default
|
|
|
|
+ `issues_enabled` (optional) - enabled by default
|
|
|
|
+ `wall_enabled` (optional) - enabled by default
|
|
|
|
+ `merge_requests_enabled` (optional) - enabled by default
|
|
|
|
+ `wiki_enabled` (optional) - enabled by default
|
2012-08-31 09:25:36 +02:00
|
|
|
|
2012-08-31 09:27:45 +02:00
|
|
|
Will return created project with status `201 Created` on success, or `404 Not
|
|
|
|
found` on fail.
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
## List project team members
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
Get a list of project team members.
|
2012-09-06 22:49:29 +02:00
|
|
|
|
|
|
|
```
|
2012-09-21 12:23:17 +02:00
|
|
|
GET /projects/:id/members
|
2012-09-06 22:49:29 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-12-18 19:52:18 +01:00
|
|
|
+ `query` - Query string
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
## Get project team member
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
Get a project team member.
|
2012-09-05 22:01:03 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
```
|
|
|
|
GET /projects/:id/members/:user_id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
2012-09-05 22:01:03 +02:00
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
+ `user_id` (required) - The ID of a user
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
|
|
|
|
"id": 1,
|
2012-12-10 23:46:31 +01:00
|
|
|
"username": "john_smith",
|
2012-09-21 12:23:17 +02:00
|
|
|
"email": "john@example.com",
|
|
|
|
"name": "John Smith",
|
|
|
|
"blocked": false,
|
|
|
|
"created_at": "2012-05-23T08:00:58Z",
|
|
|
|
"access_level": 40
|
|
|
|
}
|
2012-09-05 22:01:03 +02:00
|
|
|
```
|
2012-09-21 12:23:17 +02:00
|
|
|
|
|
|
|
## Add project team member
|
|
|
|
|
|
|
|
Add a user to a project team.
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects/:id/members
|
2012-09-05 22:01:03 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
+ `user_id` (required) - The ID of a user to add
|
|
|
|
+ `access_level` (required) - Project access level
|
2012-09-05 22:01:03 +02:00
|
|
|
|
2012-09-06 22:49:29 +02:00
|
|
|
Will return status `201 Created` on success, or `404 Not found` on fail.
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
## Edit project team member
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
Update project team member to specified access level.
|
2012-09-06 22:49:29 +02:00
|
|
|
|
|
|
|
```
|
2012-09-21 12:23:17 +02:00
|
|
|
PUT /projects/:id/members/:user_id
|
2012-09-06 22:49:29 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
+ `user_id` (required) - The ID of a team member
|
|
|
|
+ `access_level` (required) - Project access level
|
2012-09-06 22:49:29 +02:00
|
|
|
|
|
|
|
Will return status `200 OK` on success, or `404 Not found` on fail.
|
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
## Remove project team member
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
Removes user from project team.
|
2012-09-06 22:49:29 +02:00
|
|
|
|
|
|
|
```
|
2012-09-21 12:23:17 +02:00
|
|
|
DELETE /projects/:id/members/:user_id
|
2012-09-06 22:49:29 +02:00
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-21 12:23:17 +02:00
|
|
|
+ `user_id` (required) - The ID of a team member
|
2012-09-06 22:49:29 +02:00
|
|
|
|
2012-09-21 12:23:17 +02:00
|
|
|
Status code `200` will be returned on success.
|
2012-07-05 15:57:45 +02:00
|
|
|
|
2012-10-12 09:38:15 +02:00
|
|
|
## List project hooks
|
2012-09-08 19:51:12 +02:00
|
|
|
|
2012-10-12 09:38:15 +02:00
|
|
|
Get list for project hooks
|
2012-09-08 19:51:12 +02:00
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/hooks
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
|
|
|
|
Will return hooks with status `200 OK` on success, or `404 Not found` on fail.
|
|
|
|
|
2012-10-12 09:38:15 +02:00
|
|
|
## Get project hook
|
|
|
|
|
|
|
|
Get hook for project
|
|
|
|
|
|
|
|
```
|
|
|
|
GET /projects/:id/hooks/:hook_id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-10-12 09:38:15 +02:00
|
|
|
+ `hook_id` (required) - The ID of a project hook
|
|
|
|
|
|
|
|
Will return hook with status `200 OK` on success, or `404 Not found` on fail.
|
|
|
|
|
2012-09-08 19:51:12 +02:00
|
|
|
## Add project hook
|
|
|
|
|
|
|
|
Add hook to project
|
|
|
|
|
|
|
|
```
|
|
|
|
POST /projects/:id/hooks
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
+ `url` (required) - The hook URL
|
|
|
|
|
|
|
|
Will return status `201 Created` on success, or `404 Not found` on fail.
|
|
|
|
|
2012-10-12 09:38:15 +02:00
|
|
|
## Edit project hook
|
|
|
|
|
|
|
|
Edit hook for project
|
|
|
|
|
|
|
|
```
|
|
|
|
PUT /projects/:id/hooks/:hook_id
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-10-12 09:38:15 +02:00
|
|
|
+ `hook_id` (required) - The ID of a project hook
|
|
|
|
+ `url` (required) - The hook URL
|
|
|
|
|
|
|
|
Will return status `201 Created` on success, or `404 Not found` on fail.
|
|
|
|
|
|
|
|
|
2012-09-08 19:51:12 +02:00
|
|
|
## Delete project hook
|
|
|
|
|
|
|
|
Delete hook from project
|
|
|
|
|
|
|
|
```
|
|
|
|
DELETE /projects/:id/hooks
|
|
|
|
```
|
|
|
|
|
|
|
|
Parameters:
|
|
|
|
|
2012-12-21 18:47:04 +01:00
|
|
|
+ `id` (required) - The ID of a project
|
2012-09-08 19:51:12 +02:00
|
|
|
+ `hook_id` (required) - The ID of hook to delete
|
|
|
|
|
|
|
|
Will return status `200 OK` on success, or `404 Not found` on fail.
|