summaryrefslogtreecommitdiff
path: root/doc/api/services.md
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2019-04-11 12:32:56 +0000
committerNick Thomas <nick@gitlab.com>2019-04-11 12:32:56 +0000
commit0276b8682e37d361adbd1ac89d9ba6992f0d1b60 (patch)
tree921c7b84db8492726b2b06baed09b5385f1f4440 /doc/api/services.md
parentec7804444343cef3562d88aab2d255287a215430 (diff)
parenta409a77d5c5d75b02421e7d4a8a293c3469e7556 (diff)
downloadgitlab-ce-0276b8682e37d361adbd1ac89d9ba6992f0d1b60.tar.gz
Merge branch 'restore-hipchat' into 'master'
Revert "Remove HipChat integration from GitLab" Closes #60042 See merge request gitlab-org/gitlab-ce!27172
Diffstat (limited to 'doc/api/services.md')
-rw-r--r--doc/api/services.md39
1 files changed, 39 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md
index 1f84e2de7de..e8ae7ff78f4 100644
--- a/doc/api/services.md
+++ b/doc/api/services.md
@@ -449,6 +449,45 @@ Get Hangouts Chat service settings for a project.
GET /projects/:id/services/hangouts-chat
```
+## HipChat
+
+Private group chat and IM
+
+### Create/Edit HipChat service
+
+Set HipChat service for a project.
+
+```
+PUT /projects/:id/services/hipchat
+```
+
+Parameters:
+
+| Parameter | Type | Required | Description |
+| --------- | ---- | -------- | ----------- |
+| `token` | string | true | Room token |
+| `color` | string | false | The room color |
+| `notify` | boolean | false | Enable notifications |
+| `room` | string | false |Room name or ID |
+| `api_version` | string | false | Leave blank for default (v2) |
+| `server` | string | false | Leave blank for default. For example, `https://hipchat.example.com`. |
+
+### Delete HipChat service
+
+Delete HipChat service for a project.
+
+```
+DELETE /projects/:id/services/hipchat
+```
+
+### Get HipChat service settings
+
+Get HipChat service settings for a project.
+
+```
+GET /projects/:id/services/hipchat
+```
+
## Irker (IRC gateway)
Send IRC messages, on update, to a list of recipients through an Irker gateway.