diff options
author | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-11-29 15:52:56 -0800 |
---|---|---|
committer | Nihad Abbasov <narkoz.2008@gmail.com> | 2012-11-29 15:52:56 -0800 |
commit | ee6187bd554f6f257600a67f65f8af95cf9afa9a (patch) | |
tree | 64796fc07332ea345d0a68c7eaf21e6a2367c715 /doc | |
parent | 2a98a060caccd82ec8cd9bcead886142f766c069 (diff) | |
download | gitlab-ce-ee6187bd554f6f257600a67f65f8af95cf9afa9a.tar.gz |
API: ability to create a wall note
Diffstat (limited to 'doc')
-rw-r--r-- | doc/api/notes.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/api/notes.md b/doc/api/notes.md index 24f86cca900..97899fa0f6e 100644 --- a/doc/api/notes.md +++ b/doc/api/notes.md @@ -87,6 +87,22 @@ Parameters: ## New note +### New wall note + +Create a new wall note. + +``` +POST /projects/:id/notes +``` + +Parameters: + ++ `id` (required) - The ID or code name of a project ++ `body` (required) - The content of a note + +Will return created note with status `201 Created` on success, or `404 Not found` on fail. + + ### New issue note Create a new issue note. |