gitlabhq/doc/api/notes.md

199 lines
3.5 KiB
Markdown
Raw Normal View History

## Wall
2012-11-29 21:32:05 +01:00
### List project wall notes
Get a list of project wall notes.
```
GET /projects/:id/notes
```
```json
[
{
"id": 522,
"body": "The solution is rather tricky",
"author": {
"id": 1,
"username": "john_smith",
2012-11-29 21:32:05 +01:00
"email": "john@example.com",
"name": "John Smith",
"blocked": false,
"created_at": "2012-05-23T08:00:58Z"
},
"created_at": "2012-11-27T19:16:44Z"
2012-11-29 21:32:05 +01:00
}
]
```
Parameters:
+ `id` (required) - The ID of a project
2012-11-29 21:32:05 +01:00
### Get single wall note
Returns a single wall note.
2013-01-31 07:46:59 +01:00
```
GET /projects/:id/notes/:note_id
2013-01-31 07:46:59 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `note_id` (required) - The ID of a wall note
2013-01-31 07:46:59 +01:00
### Create new wall note
Creates a new wall note.
```
POST /projects/:id/notes
```
Parameters:
+ `id` (required) - The ID of a project
+ `body` (required) - The content of a note
## Issues
### List project issue notes
Gets a list of all notes for a single issue.
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/issues/:issue_id/notes
```
Parameters:
+ `id` (required) - The ID of a project
2012-11-29 21:32:05 +01:00
+ `issue_id` (required) - The ID of an issue
### Get single issue note
Returns a single note for a specific project issue
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/issues/:issue_id/notes/:note_id
2012-11-29 21:32:05 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `issue_id` (required) - The ID of a project issue
+ `note_id` (required) - The ID of an issue note
2012-11-29 21:32:05 +01:00
### Create new issue note
2012-12-01 11:20:45 +01:00
Creates a new note to a single project issue.
2012-12-01 11:20:45 +01:00
```
POST /projects/:id/issues/:issue_id/notes
2012-12-01 11:20:45 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `issue_id` (required) - The ID of an issue
+ `body` (required) - The content of a note
## Snippets
### List all snippet notes
Gets a list of all notes for a single snippet. Snippet notes are comments users can post to a snippet.
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/snippets/:snippet_id/notes
2012-11-29 21:32:05 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `snippet_id` (required) - The ID of a project snippet
2012-11-29 21:32:05 +01:00
### Get single snippet note
2012-11-29 21:32:05 +01:00
Returns a single note for a given snippet.
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/snippets/:snippet_id/notes/:note_id
2012-11-29 21:32:05 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
2012-11-29 21:32:05 +01:00
+ `snippet_id` (required) - The ID of a project snippet
+ `note_id` (required) - The ID of an snippet note
### Create new snippet note
Creates a new note for a single snippet. Snippet notes are comments users can post to a snippet.
2012-11-30 00:52:56 +01:00
```
POST /projects/:id/snippets/:snippet_id/notes
2012-11-30 00:52:56 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `snippet_id` (required) - The ID of an snippet
2012-11-30 00:52:56 +01:00
+ `body` (required) - The content of a note
## Merge Requests
### List all merge request notes
Gets a list of all notes for a single merge request.
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/merge_requests/:merge_request_id/notes
2012-11-29 21:32:05 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `merge_request_id` (required) - The ID of a project merge request
2012-11-29 21:32:05 +01:00
### Get single merge request note
Returns a single note for a given merge request.
2012-11-29 21:32:05 +01:00
```
GET /projects/:id/merge_requests/:merge_request_id/notes/:note_id
2012-11-29 21:32:05 +01:00
```
Parameters:
+ `id` (required) - The ID of a project
+ `merge_request_id` (required) - The ID of a project merge request
+ `note_id` (required) - The ID of a merge request note
### Create new merge request note
Creates a new note for a single merge request.
```
POST /projects/:id/merge_requests/:merge_request_id/notes
```
Parameters:
+ `id` (required) - The ID of a project
+ `merge_request_id` (required) - The ID of a merge request
2012-11-29 21:32:05 +01:00
+ `body` (required) - The content of a note