summaryrefslogtreecommitdiff
path: root/doc/api/services.md
diff options
context:
space:
mode:
authorYauhen Kotau <yauhen.kotau@psa-software.com>2019-02-20 20:54:47 +0300
committerYauhen Kotau <yauhen.kotau@psa-software.com>2019-02-20 20:54:47 +0300
commitdd6fbbc44d2807b93d609d304db2c4da229297dc (patch)
treec46fe5063e31f5519cfffd245623c95ef8ef8d32 /doc/api/services.md
parent5011d83cb14b5ffae0060b3e7309a24eca80a1b2 (diff)
downloadgitlab-ce-dd6fbbc44d2807b93d609d304db2c4da229297dc.tar.gz
API documentation, changelog and additional tests for YouTrack integration service
Diffstat (limited to 'doc/api/services.md')
-rw-r--r--doc/api/services.md36
1 files changed, 36 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md
index 5d5aa3e5b3e..7efd86dafd6 100644
--- a/doc/api/services.md
+++ b/doc/api/services.md
@@ -1101,3 +1101,39 @@ GET /projects/:id/services/mock-ci
```
[11435]: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/11435
+
+## YouTrack
+
+YouTrack issue tracker
+
+### Create/Edit YouTrack service
+
+Set YouTrack service for a project.
+
+```
+PUT /projects/:id/services/youtrack
+```
+
+Parameters:
+
+| Parameter | Type | Required | Description |
+| --------- | ---- | -------- | ----------- |
+| `issues_url` | string | true | Issue url |
+| `project_url` | string | true | Project url |
+| `description` | string | false | Description |
+
+### Delete YouTrack Service
+
+Delete YouTrack service for a project.
+
+```
+DELETE /projects/:id/services/youtrack
+```
+
+### Get YouTrack Service Settings
+
+Get YouTrack service settings for a project.
+
+```
+GET /projects/:id/services/youtrack
+```