@templmf/temp-solf-lmf 0.0.107 → 0.0.109
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/gitlab-foss-8-17-stable/doc/api/README.md +391 -0
- package/gitlab-foss-8-17-stable/doc/api/access_requests.md +139 -0
- package/gitlab-foss-8-17-stable/doc/api/award_emoji.md +374 -0
- package/gitlab-foss-8-17-stable/doc/api/boards.md +241 -0
- package/gitlab-foss-8-17-stable/doc/api/branches.md +260 -0
- package/gitlab-foss-8-17-stable/doc/api/broadcast_messages.md +154 -0
- package/gitlab-foss-8-17-stable/doc/api/build_triggers.md +118 -0
- package/gitlab-foss-8-17-stable/doc/api/build_variables.md +128 -0
- package/gitlab-foss-8-17-stable/doc/api/builds.md +610 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/README.md +24 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/builds.md +147 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/lint.md +49 -0
- package/gitlab-foss-8-17-stable/doc/api/ci/runners.md +59 -0
- package/gitlab-foss-8-17-stable/doc/api/commits.md +479 -0
- package/gitlab-foss-8-17-stable/doc/api/deploy_key_multiple_projects.md +29 -0
- package/gitlab-foss-8-17-stable/doc/api/deploy_keys.md +216 -0
- package/gitlab-foss-8-17-stable/doc/api/deployments.md +218 -0
- package/gitlab-foss-8-17-stable/doc/api/enviroments.md +121 -0
- package/gitlab-foss-8-17-stable/doc/api/groups.md +484 -0
- package/gitlab-foss-8-17-stable/doc/api/issues.md +856 -0
- package/gitlab-foss-8-17-stable/doc/api/keys.md +46 -0
- package/gitlab-foss-8-17-stable/doc/api/labels.md +257 -0
- package/gitlab-foss-8-17-stable/doc/api/members.md +175 -0
- package/gitlab-foss-8-17-stable/doc/api/merge_requests.md +1158 -0
- package/gitlab-foss-8-17-stable/doc/api/milestones.md +105 -0
- package/gitlab-foss-8-17-stable/doc/api/namespaces.md +70 -0
- package/gitlab-foss-8-17-stable/doc/api/notes.md +407 -0
- package/gitlab-foss-8-17-stable/doc/api/notification_settings.md +177 -0
- package/gitlab-foss-8-17-stable/doc/api/oauth2.md +137 -0
- package/gitlab-foss-8-17-stable/doc/api/pipelines.md +259 -0
- package/gitlab-foss-8-17-stable/doc/api/project_snippets.md +118 -0
- package/gitlab-foss-8-17-stable/doc/api/projects.md +1402 -0
- package/gitlab-foss-8-17-stable/doc/api/repositories.md +200 -0
- package/gitlab-foss-8-17-stable/doc/api/repository_files.md +134 -0
- package/gitlab-foss-8-17-stable/doc/api/runners.md +322 -0
- package/gitlab-foss-8-17-stable/doc/api/services.md +812 -0
- package/gitlab-foss-8-17-stable/doc/api/session.md +56 -0
- package/gitlab-foss-8-17-stable/doc/api/settings.md +126 -0
- package/gitlab-foss-8-17-stable/doc/api/sidekiq_metrics.md +152 -0
- package/gitlab-foss-8-17-stable/doc/api/snippets.md +232 -0
- package/gitlab-foss-8-17-stable/doc/api/system_hooks.md +146 -0
- package/gitlab-foss-8-17-stable/doc/api/tags.md +191 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/gitignores.md +579 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/gitlab_ci_ymls.md +120 -0
- package/gitlab-foss-8-17-stable/doc/api/templates/licenses.md +147 -0
- package/gitlab-foss-8-17-stable/doc/api/todos.md +296 -0
- package/gitlab-foss-8-17-stable/doc/api/users.md +835 -0
- package/gitlab-foss-8-17-stable/doc/api/v3_to_v4.md +14 -0
- package/gitlab-foss-8-17-stable/doc/api/version.md +23 -0
- package/package.json +1 -1
- package/SkillConfigPanel.vue +0 -2322
|
@@ -0,0 +1,812 @@
|
|
|
1
|
+
# Services
|
|
2
|
+
|
|
3
|
+
## Asana
|
|
4
|
+
|
|
5
|
+
Asana - Teamwork without email
|
|
6
|
+
|
|
7
|
+
### Create/Edit Asana service
|
|
8
|
+
|
|
9
|
+
Set Asana service for a project.
|
|
10
|
+
|
|
11
|
+
> This service adds commit messages as comments to Asana tasks. Once enabled, commit messages are checked for Asana task URLs (for example, `https://app.asana.com/0/123456/987654`) or task IDs starting with # (for example, `#987654`). Every task ID found will get the commit comment added to it. You can also close a task with a message containing: `fix #123456`. You can find your Api Keys here: https://asana.com/developers/documentation/getting-started/auth#api-key
|
|
12
|
+
|
|
13
|
+
```
|
|
14
|
+
PUT /projects/:id/services/asana
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
Parameters:
|
|
18
|
+
|
|
19
|
+
- `api_key` (**required**) - User API token. User must have access to task, all comments will be attributed to this user.
|
|
20
|
+
- `restrict_to_branch` (optional) - Comma-separated list of branches which will be automatically inspected. Leave blank to include all branches.
|
|
21
|
+
|
|
22
|
+
### Delete Asana service
|
|
23
|
+
|
|
24
|
+
Delete Asana service for a project.
|
|
25
|
+
|
|
26
|
+
```
|
|
27
|
+
DELETE /projects/:id/services/asana
|
|
28
|
+
```
|
|
29
|
+
|
|
30
|
+
### Get Asana service settings
|
|
31
|
+
|
|
32
|
+
Get Asana service settings for a project.
|
|
33
|
+
|
|
34
|
+
```
|
|
35
|
+
GET /projects/:id/services/asana
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Assembla
|
|
39
|
+
|
|
40
|
+
Project Management Software (Source Commits Endpoint)
|
|
41
|
+
|
|
42
|
+
### Create/Edit Assembla service
|
|
43
|
+
|
|
44
|
+
Set Assembla service for a project.
|
|
45
|
+
|
|
46
|
+
```
|
|
47
|
+
PUT /projects/:id/services/assembla
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
Parameters:
|
|
51
|
+
|
|
52
|
+
- `token` (**required**)
|
|
53
|
+
- `subdomain` (optional)
|
|
54
|
+
|
|
55
|
+
### Delete Assembla service
|
|
56
|
+
|
|
57
|
+
Delete Assembla service for a project.
|
|
58
|
+
|
|
59
|
+
```
|
|
60
|
+
DELETE /projects/:id/services/assembla
|
|
61
|
+
```
|
|
62
|
+
|
|
63
|
+
### Get Assembla service settings
|
|
64
|
+
|
|
65
|
+
Get Assembla service settings for a project.
|
|
66
|
+
|
|
67
|
+
```
|
|
68
|
+
GET /projects/:id/services/assembla
|
|
69
|
+
```
|
|
70
|
+
|
|
71
|
+
## Atlassian Bamboo CI
|
|
72
|
+
|
|
73
|
+
A continuous integration and build server
|
|
74
|
+
|
|
75
|
+
### Create/Edit Atlassian Bamboo CI service
|
|
76
|
+
|
|
77
|
+
Set Atlassian Bamboo CI service for a project.
|
|
78
|
+
|
|
79
|
+
> You must set up automatic revision labeling and a repository trigger in Bamboo.
|
|
80
|
+
|
|
81
|
+
```
|
|
82
|
+
PUT /projects/:id/services/bamboo
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
Parameters:
|
|
86
|
+
|
|
87
|
+
- `bamboo_url` (**required**) - Bamboo root URL like https://bamboo.example.com
|
|
88
|
+
- `build_key` (**required**) - Bamboo build plan key like KEY
|
|
89
|
+
- `username` (**required**) - A user with API access, if applicable
|
|
90
|
+
- `password` (**required**)
|
|
91
|
+
|
|
92
|
+
### Delete Atlassian Bamboo CI service
|
|
93
|
+
|
|
94
|
+
Delete Atlassian Bamboo CI service for a project.
|
|
95
|
+
|
|
96
|
+
```
|
|
97
|
+
DELETE /projects/:id/services/bamboo
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Get Atlassian Bamboo CI service settings
|
|
101
|
+
|
|
102
|
+
Get Atlassian Bamboo CI service settings for a project.
|
|
103
|
+
|
|
104
|
+
```
|
|
105
|
+
GET /projects/:id/services/bamboo
|
|
106
|
+
```
|
|
107
|
+
|
|
108
|
+
## Buildkite
|
|
109
|
+
|
|
110
|
+
Continuous integration and deployments
|
|
111
|
+
|
|
112
|
+
### Create/Edit Buildkite service
|
|
113
|
+
|
|
114
|
+
Set Buildkite service for a project.
|
|
115
|
+
|
|
116
|
+
```
|
|
117
|
+
PUT /projects/:id/services/buildkite
|
|
118
|
+
```
|
|
119
|
+
|
|
120
|
+
Parameters:
|
|
121
|
+
|
|
122
|
+
- `token` (**required**) - Buildkite project GitLab token
|
|
123
|
+
- `project_url` (**required**) - https://buildkite.com/example/project
|
|
124
|
+
- `enable_ssl_verification` (optional) - Enable SSL verification
|
|
125
|
+
|
|
126
|
+
### Delete Buildkite service
|
|
127
|
+
|
|
128
|
+
Delete Buildkite service for a project.
|
|
129
|
+
|
|
130
|
+
```
|
|
131
|
+
DELETE /projects/:id/services/buildkite
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
### Get Buildkite service settings
|
|
135
|
+
|
|
136
|
+
Get Buildkite service settings for a project.
|
|
137
|
+
|
|
138
|
+
```
|
|
139
|
+
GET /projects/:id/services/buildkite
|
|
140
|
+
```
|
|
141
|
+
|
|
142
|
+
## Build-Emails
|
|
143
|
+
|
|
144
|
+
Get emails for GitLab CI builds.
|
|
145
|
+
|
|
146
|
+
### Create/Edit Build-Emails service
|
|
147
|
+
|
|
148
|
+
Set Build-Emails service for a project.
|
|
149
|
+
|
|
150
|
+
```
|
|
151
|
+
PUT /projects/:id/services/builds-email
|
|
152
|
+
```
|
|
153
|
+
|
|
154
|
+
Parameters:
|
|
155
|
+
|
|
156
|
+
| Attribute | Type | Required | Description |
|
|
157
|
+
| --------- | ---- | -------- | ----------- |
|
|
158
|
+
| `recipients` | string | yes | Comma-separated list of recipient email addresses |
|
|
159
|
+
| `add_pusher` | boolean | no | Add pusher to recipients list |
|
|
160
|
+
| `notify_only_broken_builds` | boolean | no | Notify only broken builds |
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
### Delete Build-Emails service
|
|
164
|
+
|
|
165
|
+
Delete Build-Emails service for a project.
|
|
166
|
+
|
|
167
|
+
```
|
|
168
|
+
DELETE /projects/:id/services/builds-email
|
|
169
|
+
```
|
|
170
|
+
|
|
171
|
+
### Get Build-Emails service settings
|
|
172
|
+
|
|
173
|
+
Get Build-Emails service settings for a project.
|
|
174
|
+
|
|
175
|
+
```
|
|
176
|
+
GET /projects/:id/services/builds-email
|
|
177
|
+
```
|
|
178
|
+
|
|
179
|
+
## Campfire
|
|
180
|
+
|
|
181
|
+
Simple web-based real-time group chat
|
|
182
|
+
|
|
183
|
+
### Create/Edit Campfire service
|
|
184
|
+
|
|
185
|
+
Set Campfire service for a project.
|
|
186
|
+
|
|
187
|
+
```
|
|
188
|
+
PUT /projects/:id/services/campfire
|
|
189
|
+
```
|
|
190
|
+
|
|
191
|
+
Parameters:
|
|
192
|
+
|
|
193
|
+
- `token` (**required**)
|
|
194
|
+
- `subdomain` (optional)
|
|
195
|
+
- `room` (optional)
|
|
196
|
+
|
|
197
|
+
### Delete Campfire service
|
|
198
|
+
|
|
199
|
+
Delete Campfire service for a project.
|
|
200
|
+
|
|
201
|
+
```
|
|
202
|
+
DELETE /projects/:id/services/campfire
|
|
203
|
+
```
|
|
204
|
+
|
|
205
|
+
### Get Campfire service settings
|
|
206
|
+
|
|
207
|
+
Get Campfire service settings for a project.
|
|
208
|
+
|
|
209
|
+
```
|
|
210
|
+
GET /projects/:id/services/campfire
|
|
211
|
+
```
|
|
212
|
+
|
|
213
|
+
## Custom Issue Tracker
|
|
214
|
+
|
|
215
|
+
Custom issue tracker
|
|
216
|
+
|
|
217
|
+
### Create/Edit Custom Issue Tracker service
|
|
218
|
+
|
|
219
|
+
Set Custom Issue Tracker service for a project.
|
|
220
|
+
|
|
221
|
+
```
|
|
222
|
+
PUT /projects/:id/services/custom-issue-tracker
|
|
223
|
+
```
|
|
224
|
+
|
|
225
|
+
Parameters:
|
|
226
|
+
|
|
227
|
+
- `new_issue_url` (**required**) - New Issue url
|
|
228
|
+
- `issues_url` (**required**) - Issue url
|
|
229
|
+
- `project_url` (**required**) - Project url
|
|
230
|
+
- `description` (optional) - Custom issue tracker
|
|
231
|
+
- `title` (optional) - Custom Issue Tracker
|
|
232
|
+
|
|
233
|
+
### Delete Custom Issue Tracker service
|
|
234
|
+
|
|
235
|
+
Delete Custom Issue Tracker service for a project.
|
|
236
|
+
|
|
237
|
+
```
|
|
238
|
+
DELETE /projects/:id/services/custom-issue-tracker
|
|
239
|
+
```
|
|
240
|
+
|
|
241
|
+
### Get Custom Issue Tracker service settings
|
|
242
|
+
|
|
243
|
+
Get Custom Issue Tracker service settings for a project.
|
|
244
|
+
|
|
245
|
+
```
|
|
246
|
+
GET /projects/:id/services/custom-issue-tracker
|
|
247
|
+
```
|
|
248
|
+
|
|
249
|
+
## Drone CI
|
|
250
|
+
|
|
251
|
+
Drone is a Continuous Integration platform built on Docker, written in Go
|
|
252
|
+
|
|
253
|
+
### Create/Edit Drone CI service
|
|
254
|
+
|
|
255
|
+
Set Drone CI service for a project.
|
|
256
|
+
|
|
257
|
+
```
|
|
258
|
+
PUT /projects/:id/services/drone-ci
|
|
259
|
+
```
|
|
260
|
+
|
|
261
|
+
Parameters:
|
|
262
|
+
|
|
263
|
+
- `token` (**required**) - Drone CI project specific token
|
|
264
|
+
- `drone_url` (**required**) - http://drone.example.com
|
|
265
|
+
- `enable_ssl_verification` (optional) - Enable SSL verification
|
|
266
|
+
|
|
267
|
+
### Delete Drone CI service
|
|
268
|
+
|
|
269
|
+
Delete Drone CI service for a project.
|
|
270
|
+
|
|
271
|
+
```
|
|
272
|
+
DELETE /projects/:id/services/drone-ci
|
|
273
|
+
```
|
|
274
|
+
|
|
275
|
+
### Get Drone CI service settings
|
|
276
|
+
|
|
277
|
+
Get Drone CI service settings for a project.
|
|
278
|
+
|
|
279
|
+
```
|
|
280
|
+
GET /projects/:id/services/drone-ci
|
|
281
|
+
```
|
|
282
|
+
|
|
283
|
+
## Emails on push
|
|
284
|
+
|
|
285
|
+
Email the commits and diff of each push to a list of recipients.
|
|
286
|
+
|
|
287
|
+
### Create/Edit Emails on push service
|
|
288
|
+
|
|
289
|
+
Set Emails on push service for a project.
|
|
290
|
+
|
|
291
|
+
```
|
|
292
|
+
PUT /projects/:id/services/emails-on-push
|
|
293
|
+
```
|
|
294
|
+
|
|
295
|
+
Parameters:
|
|
296
|
+
|
|
297
|
+
- `recipients` (**required**) - Emails separated by whitespace
|
|
298
|
+
- `disable_diffs` (optional) - Disable code diffs
|
|
299
|
+
- `send_from_committer_email` (optional) - Send from committer
|
|
300
|
+
|
|
301
|
+
### Delete Emails on push service
|
|
302
|
+
|
|
303
|
+
Delete Emails on push service for a project.
|
|
304
|
+
|
|
305
|
+
```
|
|
306
|
+
DELETE /projects/:id/services/emails-on-push
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
### Get Emails on push service settings
|
|
310
|
+
|
|
311
|
+
Get Emails on push service settings for a project.
|
|
312
|
+
|
|
313
|
+
```
|
|
314
|
+
GET /projects/:id/services/emails-on-push
|
|
315
|
+
```
|
|
316
|
+
|
|
317
|
+
## External Wiki
|
|
318
|
+
|
|
319
|
+
Replaces the link to the internal wiki with a link to an external wiki.
|
|
320
|
+
|
|
321
|
+
### Create/Edit External Wiki service
|
|
322
|
+
|
|
323
|
+
Set External Wiki service for a project.
|
|
324
|
+
|
|
325
|
+
```
|
|
326
|
+
PUT /projects/:id/services/external-wiki
|
|
327
|
+
```
|
|
328
|
+
|
|
329
|
+
Parameters:
|
|
330
|
+
|
|
331
|
+
- `external_wiki_url` (**required**) - The URL of the external Wiki
|
|
332
|
+
|
|
333
|
+
### Delete External Wiki service
|
|
334
|
+
|
|
335
|
+
Delete External Wiki service for a project.
|
|
336
|
+
|
|
337
|
+
```
|
|
338
|
+
DELETE /projects/:id/services/external-wiki
|
|
339
|
+
```
|
|
340
|
+
|
|
341
|
+
### Get External Wiki service settings
|
|
342
|
+
|
|
343
|
+
Get External Wiki service settings for a project.
|
|
344
|
+
|
|
345
|
+
```
|
|
346
|
+
GET /projects/:id/services/external-wiki
|
|
347
|
+
```
|
|
348
|
+
|
|
349
|
+
## Flowdock
|
|
350
|
+
|
|
351
|
+
Flowdock is a collaboration web app for technical teams.
|
|
352
|
+
|
|
353
|
+
### Create/Edit Flowdock service
|
|
354
|
+
|
|
355
|
+
Set Flowdock service for a project.
|
|
356
|
+
|
|
357
|
+
```
|
|
358
|
+
PUT /projects/:id/services/flowdock
|
|
359
|
+
```
|
|
360
|
+
|
|
361
|
+
Parameters:
|
|
362
|
+
|
|
363
|
+
- `token` (**required**) - Flowdock Git source token
|
|
364
|
+
|
|
365
|
+
### Delete Flowdock service
|
|
366
|
+
|
|
367
|
+
Delete Flowdock service for a project.
|
|
368
|
+
|
|
369
|
+
```
|
|
370
|
+
DELETE /projects/:id/services/flowdock
|
|
371
|
+
```
|
|
372
|
+
|
|
373
|
+
### Get Flowdock service settings
|
|
374
|
+
|
|
375
|
+
Get Flowdock service settings for a project.
|
|
376
|
+
|
|
377
|
+
```
|
|
378
|
+
GET /projects/:id/services/flowdock
|
|
379
|
+
```
|
|
380
|
+
|
|
381
|
+
## Gemnasium
|
|
382
|
+
|
|
383
|
+
Gemnasium monitors your project dependencies and alerts you about updates and security vulnerabilities.
|
|
384
|
+
|
|
385
|
+
### Create/Edit Gemnasium service
|
|
386
|
+
|
|
387
|
+
Set Gemnasium service for a project.
|
|
388
|
+
|
|
389
|
+
```
|
|
390
|
+
PUT /projects/:id/services/gemnasium
|
|
391
|
+
```
|
|
392
|
+
|
|
393
|
+
Parameters:
|
|
394
|
+
|
|
395
|
+
- `api_key` (**required**) - Your personal API KEY on gemnasium.com
|
|
396
|
+
- `token` (**required**) - The project's slug on gemnasium.com
|
|
397
|
+
|
|
398
|
+
### Delete Gemnasium service
|
|
399
|
+
|
|
400
|
+
Delete Gemnasium service for a project.
|
|
401
|
+
|
|
402
|
+
```
|
|
403
|
+
DELETE /projects/:id/services/gemnasium
|
|
404
|
+
```
|
|
405
|
+
|
|
406
|
+
### Get Gemnasium service settings
|
|
407
|
+
|
|
408
|
+
Get Gemnasium service settings for a project.
|
|
409
|
+
|
|
410
|
+
```
|
|
411
|
+
GET /projects/:id/services/gemnasium
|
|
412
|
+
```
|
|
413
|
+
|
|
414
|
+
## HipChat
|
|
415
|
+
|
|
416
|
+
Private group chat and IM
|
|
417
|
+
|
|
418
|
+
### Create/Edit HipChat service
|
|
419
|
+
|
|
420
|
+
Set HipChat service for a project.
|
|
421
|
+
|
|
422
|
+
```
|
|
423
|
+
PUT /projects/:id/services/hipchat
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
Parameters:
|
|
427
|
+
|
|
428
|
+
- `token` (**required**) - Room token
|
|
429
|
+
- `color` (optional)
|
|
430
|
+
- `notify` (optional)
|
|
431
|
+
- `room` (optional) - Room name or ID
|
|
432
|
+
- `api_version` (optional) - Leave blank for default (v2)
|
|
433
|
+
- `server` (optional) - Leave blank for default. https://hipchat.example.com
|
|
434
|
+
|
|
435
|
+
### Delete HipChat service
|
|
436
|
+
|
|
437
|
+
Delete HipChat service for a project.
|
|
438
|
+
|
|
439
|
+
```
|
|
440
|
+
DELETE /projects/:id/services/hipchat
|
|
441
|
+
```
|
|
442
|
+
|
|
443
|
+
### Get HipChat service settings
|
|
444
|
+
|
|
445
|
+
Get HipChat service settings for a project.
|
|
446
|
+
|
|
447
|
+
```
|
|
448
|
+
GET /projects/:id/services/hipchat
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
## Irker (IRC gateway)
|
|
452
|
+
|
|
453
|
+
Send IRC messages, on update, to a list of recipients through an Irker gateway.
|
|
454
|
+
|
|
455
|
+
### Create/Edit Irker (IRC gateway) service
|
|
456
|
+
|
|
457
|
+
Set Irker (IRC gateway) service for a project.
|
|
458
|
+
|
|
459
|
+
> NOTE: Irker does NOT have built-in authentication, which makes it vulnerable to spamming IRC channels if it is hosted outside of a firewall. Please make sure you run the daemon within a secured network to prevent abuse. For more details, read: http://www.catb.org/~esr/irker/security.html.
|
|
460
|
+
|
|
461
|
+
```
|
|
462
|
+
PUT /projects/:id/services/irker
|
|
463
|
+
```
|
|
464
|
+
|
|
465
|
+
Parameters:
|
|
466
|
+
|
|
467
|
+
- `recipients` (**required**) - Recipients/channels separated by whitespaces
|
|
468
|
+
- `default_irc_uri` (optional) - irc://irc.network.net:6697/
|
|
469
|
+
- `server_port` (optional) - 6659
|
|
470
|
+
- `server_host` (optional) - localhost
|
|
471
|
+
- `colorize_messages` (optional)
|
|
472
|
+
|
|
473
|
+
### Delete Irker (IRC gateway) service
|
|
474
|
+
|
|
475
|
+
Delete Irker (IRC gateway) service for a project.
|
|
476
|
+
|
|
477
|
+
```
|
|
478
|
+
DELETE /projects/:id/services/irker
|
|
479
|
+
```
|
|
480
|
+
|
|
481
|
+
### Get Irker (IRC gateway) service settings
|
|
482
|
+
|
|
483
|
+
Get Irker (IRC gateway) service settings for a project.
|
|
484
|
+
|
|
485
|
+
```
|
|
486
|
+
GET /projects/:id/services/irker
|
|
487
|
+
```
|
|
488
|
+
|
|
489
|
+
## JIRA
|
|
490
|
+
|
|
491
|
+
JIRA issue tracker.
|
|
492
|
+
|
|
493
|
+
### Get JIRA service settings
|
|
494
|
+
|
|
495
|
+
Get JIRA service settings for a project.
|
|
496
|
+
|
|
497
|
+
```
|
|
498
|
+
GET /projects/:id/services/jira
|
|
499
|
+
```
|
|
500
|
+
|
|
501
|
+
### Create/Edit JIRA service
|
|
502
|
+
|
|
503
|
+
Set JIRA service for a project.
|
|
504
|
+
|
|
505
|
+
>**Notes:**
|
|
506
|
+
- Starting with GitLab 8.14, `api_url`, `issues_url`, `new_issue_url` and
|
|
507
|
+
`project_url` are replaced by `project_key`, `url`. If you are using an
|
|
508
|
+
older version, [follow this documentation][old-jira-api].
|
|
509
|
+
|
|
510
|
+
```
|
|
511
|
+
PUT /projects/:id/services/jira
|
|
512
|
+
```
|
|
513
|
+
|
|
514
|
+
| Attribute | Type | Required | Description |
|
|
515
|
+
| --------- | ---- | -------- | ----------- |
|
|
516
|
+
| `url` | string | yes | The URL to the JIRA project which is being linked to this GitLab project, e.g., `https://jira.example.com`. |
|
|
517
|
+
| `project_key` | string | yes | The short identifier for your JIRA project, all uppercase, e.g., `PROJ`. |
|
|
518
|
+
| `username` | string | no | The username of the user created to be used with GitLab/JIRA. |
|
|
519
|
+
| `password` | string | no | The password of the user created to be used with GitLab/JIRA. |
|
|
520
|
+
| `jira_issue_transition_id` | integer | no | The ID of a transition that moves issues to a closed state. You can find this number under the JIRA workflow administration (**Administration > Issues > Workflows**) by selecting **View** under **Operations** of the desired workflow of your project. The ID of each state can be found inside the parenthesis of each transition name under the **Transitions (id)** column ([see screenshot][trans]). By default, this ID is set to `2`. |
|
|
521
|
+
|
|
522
|
+
### Delete JIRA service
|
|
523
|
+
|
|
524
|
+
Remove all previously JIRA settings from a project.
|
|
525
|
+
|
|
526
|
+
```
|
|
527
|
+
DELETE /projects/:id/services/jira
|
|
528
|
+
```
|
|
529
|
+
|
|
530
|
+
## Mattermost Slash Commands
|
|
531
|
+
|
|
532
|
+
Ability to receive slash commands from a Mattermost chat instance.
|
|
533
|
+
|
|
534
|
+
### Create/Edit Mattermost Slash Command service
|
|
535
|
+
|
|
536
|
+
Set Mattermost Slash Command for a project.
|
|
537
|
+
|
|
538
|
+
```
|
|
539
|
+
PUT /projects/:id/services/mattermost-slash-commands
|
|
540
|
+
```
|
|
541
|
+
|
|
542
|
+
Parameters:
|
|
543
|
+
|
|
544
|
+
| Attribute | Type | Required | Description |
|
|
545
|
+
| --------- | ---- | -------- | ----------- |
|
|
546
|
+
| `token` | string | yes | The Mattermost token |
|
|
547
|
+
|
|
548
|
+
|
|
549
|
+
### Delete Mattermost Slash Command service
|
|
550
|
+
|
|
551
|
+
Delete Mattermost Slash Command service for a project.
|
|
552
|
+
|
|
553
|
+
```
|
|
554
|
+
DELETE /projects/:id/services/mattermost-slash-commands
|
|
555
|
+
```
|
|
556
|
+
|
|
557
|
+
### Get Mattermost Slash Command service settings
|
|
558
|
+
|
|
559
|
+
Get Mattermost Slash Command service settings for a project.
|
|
560
|
+
|
|
561
|
+
```
|
|
562
|
+
GET /projects/:id/services/mattermost-slash-commands
|
|
563
|
+
```
|
|
564
|
+
|
|
565
|
+
## Pipeline-Emails
|
|
566
|
+
|
|
567
|
+
Get emails for GitLab CI pipelines.
|
|
568
|
+
|
|
569
|
+
### Create/Edit Pipeline-Emails service
|
|
570
|
+
|
|
571
|
+
Set Pipeline-Emails service for a project.
|
|
572
|
+
|
|
573
|
+
```
|
|
574
|
+
PUT /projects/:id/services/pipelines-email
|
|
575
|
+
```
|
|
576
|
+
|
|
577
|
+
Parameters:
|
|
578
|
+
|
|
579
|
+
| Attribute | Type | Required | Description |
|
|
580
|
+
| --------- | ---- | -------- | ----------- |
|
|
581
|
+
| `recipients` | string | yes | Comma-separated list of recipient email addresses |
|
|
582
|
+
| `add_pusher` | boolean | no | Add pusher to recipients list |
|
|
583
|
+
| `notify_only_broken_builds` | boolean | no | Notify only broken pipelines |
|
|
584
|
+
|
|
585
|
+
|
|
586
|
+
### Delete Pipeline-Emails service
|
|
587
|
+
|
|
588
|
+
Delete Pipeline-Emails service for a project.
|
|
589
|
+
|
|
590
|
+
```
|
|
591
|
+
DELETE /projects/:id/services/pipelines-email
|
|
592
|
+
```
|
|
593
|
+
|
|
594
|
+
### Get Pipeline-Emails service settings
|
|
595
|
+
|
|
596
|
+
Get Pipeline-Emails service settings for a project.
|
|
597
|
+
|
|
598
|
+
```
|
|
599
|
+
GET /projects/:id/services/pipelines-email
|
|
600
|
+
```
|
|
601
|
+
|
|
602
|
+
## PivotalTracker
|
|
603
|
+
|
|
604
|
+
Project Management Software (Source Commits Endpoint)
|
|
605
|
+
|
|
606
|
+
### Create/Edit PivotalTracker service
|
|
607
|
+
|
|
608
|
+
Set PivotalTracker service for a project.
|
|
609
|
+
|
|
610
|
+
```
|
|
611
|
+
PUT /projects/:id/services/pivotaltracker
|
|
612
|
+
```
|
|
613
|
+
|
|
614
|
+
Parameters:
|
|
615
|
+
|
|
616
|
+
- `token` (**required**)
|
|
617
|
+
- `restrict_to_branch` (optional) - Comma-separated list of branches which will be automatically inspected. Leave blank to include all branches.
|
|
618
|
+
|
|
619
|
+
### Delete PivotalTracker service
|
|
620
|
+
|
|
621
|
+
Delete PivotalTracker service for a project.
|
|
622
|
+
|
|
623
|
+
```
|
|
624
|
+
DELETE /projects/:id/services/pivotaltracker
|
|
625
|
+
```
|
|
626
|
+
|
|
627
|
+
### Get PivotalTracker service settings
|
|
628
|
+
|
|
629
|
+
Get PivotalTracker service settings for a project.
|
|
630
|
+
|
|
631
|
+
```
|
|
632
|
+
GET /projects/:id/services/pivotaltracker
|
|
633
|
+
```
|
|
634
|
+
|
|
635
|
+
## Pushover
|
|
636
|
+
|
|
637
|
+
Pushover makes it easy to get real-time notifications on your Android device, iPhone, iPad, and Desktop.
|
|
638
|
+
|
|
639
|
+
### Create/Edit Pushover service
|
|
640
|
+
|
|
641
|
+
Set Pushover service for a project.
|
|
642
|
+
|
|
643
|
+
```
|
|
644
|
+
PUT /projects/:id/services/pushover
|
|
645
|
+
```
|
|
646
|
+
|
|
647
|
+
Parameters:
|
|
648
|
+
|
|
649
|
+
- `api_key` (**required**) - Your application key
|
|
650
|
+
- `user_key` (**required**) - Your user key
|
|
651
|
+
- `priority` (**required**)
|
|
652
|
+
- `device` (optional) - Leave blank for all active devices
|
|
653
|
+
- `sound` (optional)
|
|
654
|
+
|
|
655
|
+
### Delete Pushover service
|
|
656
|
+
|
|
657
|
+
Delete Pushover service for a project.
|
|
658
|
+
|
|
659
|
+
```
|
|
660
|
+
DELETE /projects/:id/services/pushover
|
|
661
|
+
```
|
|
662
|
+
|
|
663
|
+
### Get Pushover service settings
|
|
664
|
+
|
|
665
|
+
Get Pushover service settings for a project.
|
|
666
|
+
|
|
667
|
+
```
|
|
668
|
+
GET /projects/:id/services/pushover
|
|
669
|
+
```
|
|
670
|
+
|
|
671
|
+
## Redmine
|
|
672
|
+
|
|
673
|
+
Redmine issue tracker
|
|
674
|
+
|
|
675
|
+
### Create/Edit Redmine service
|
|
676
|
+
|
|
677
|
+
Set Redmine service for a project.
|
|
678
|
+
|
|
679
|
+
```
|
|
680
|
+
PUT /projects/:id/services/redmine
|
|
681
|
+
```
|
|
682
|
+
|
|
683
|
+
Parameters:
|
|
684
|
+
|
|
685
|
+
- `new_issue_url` (**required**) - New Issue url
|
|
686
|
+
- `project_url` (**required**) - Project url
|
|
687
|
+
- `issues_url` (**required**) - Issue url
|
|
688
|
+
- `description` (optional) - Redmine issue tracker
|
|
689
|
+
|
|
690
|
+
### Delete Redmine service
|
|
691
|
+
|
|
692
|
+
Delete Redmine service for a project.
|
|
693
|
+
|
|
694
|
+
```
|
|
695
|
+
DELETE /projects/:id/services/redmine
|
|
696
|
+
```
|
|
697
|
+
|
|
698
|
+
### Get Redmine service settings
|
|
699
|
+
|
|
700
|
+
Get Redmine service settings for a project.
|
|
701
|
+
|
|
702
|
+
```
|
|
703
|
+
GET /projects/:id/services/redmine
|
|
704
|
+
```
|
|
705
|
+
|
|
706
|
+
## Slack notifications
|
|
707
|
+
|
|
708
|
+
Receive event notifications in Slack
|
|
709
|
+
|
|
710
|
+
### Create/Edit Slack service
|
|
711
|
+
|
|
712
|
+
Set Slack service for a project.
|
|
713
|
+
|
|
714
|
+
```
|
|
715
|
+
PUT /projects/:id/services/slack
|
|
716
|
+
```
|
|
717
|
+
|
|
718
|
+
Parameters:
|
|
719
|
+
|
|
720
|
+
- `webhook` (**required**) - https://hooks.slack.com/services/...
|
|
721
|
+
- `username` (optional) - username
|
|
722
|
+
- `channel` (optional) - #channel
|
|
723
|
+
|
|
724
|
+
### Delete Slack service
|
|
725
|
+
|
|
726
|
+
Delete Slack service for a project.
|
|
727
|
+
|
|
728
|
+
```
|
|
729
|
+
DELETE /projects/:id/services/slack
|
|
730
|
+
```
|
|
731
|
+
|
|
732
|
+
### Get Slack service settings
|
|
733
|
+
|
|
734
|
+
Get Slack service settings for a project.
|
|
735
|
+
|
|
736
|
+
```
|
|
737
|
+
GET /projects/:id/services/slack
|
|
738
|
+
```
|
|
739
|
+
|
|
740
|
+
## Mattermost notifications
|
|
741
|
+
|
|
742
|
+
Receive event notifications in Mattermost
|
|
743
|
+
|
|
744
|
+
### Create/Edit Mattermost notifications service
|
|
745
|
+
|
|
746
|
+
Set Mattermost service for a project.
|
|
747
|
+
|
|
748
|
+
```
|
|
749
|
+
PUT /projects/:id/services/mattermost
|
|
750
|
+
```
|
|
751
|
+
|
|
752
|
+
Parameters:
|
|
753
|
+
|
|
754
|
+
- `webhook` (**required**) - https://mattermost.example/hooks/1298aff...
|
|
755
|
+
- `username` (optional) - username
|
|
756
|
+
- `channel` (optional) - #channel
|
|
757
|
+
|
|
758
|
+
### Delete Mattermost notifications service
|
|
759
|
+
|
|
760
|
+
Delete Mattermost Notifications service for a project.
|
|
761
|
+
|
|
762
|
+
```
|
|
763
|
+
DELETE /projects/:id/services/mattermost
|
|
764
|
+
```
|
|
765
|
+
|
|
766
|
+
### Get Mattermost notifications service settings
|
|
767
|
+
|
|
768
|
+
Get Mattermost notifications service settings for a project.
|
|
769
|
+
|
|
770
|
+
```
|
|
771
|
+
GET /projects/:id/services/mattermost
|
|
772
|
+
```
|
|
773
|
+
|
|
774
|
+
## JetBrains TeamCity CI
|
|
775
|
+
|
|
776
|
+
A continuous integration and build server
|
|
777
|
+
|
|
778
|
+
### Create/Edit JetBrains TeamCity CI service
|
|
779
|
+
|
|
780
|
+
Set JetBrains TeamCity CI service for a project.
|
|
781
|
+
|
|
782
|
+
> The build configuration in Teamcity must use the build format number %build.vcs.number% you will also want to configure monitoring of all branches so merge requests build, that setting is in the vsc root advanced settings.
|
|
783
|
+
|
|
784
|
+
```
|
|
785
|
+
PUT /projects/:id/services/teamcity
|
|
786
|
+
```
|
|
787
|
+
|
|
788
|
+
Parameters:
|
|
789
|
+
|
|
790
|
+
- `teamcity_url` (**required**) - TeamCity root URL like https://teamcity.example.com
|
|
791
|
+
- `build_type` (**required**) - Build configuration ID
|
|
792
|
+
- `username` (**required**) - A user with permissions to trigger a manual build
|
|
793
|
+
- `password` (**required**)
|
|
794
|
+
|
|
795
|
+
### Delete JetBrains TeamCity CI service
|
|
796
|
+
|
|
797
|
+
Delete JetBrains TeamCity CI service for a project.
|
|
798
|
+
|
|
799
|
+
```
|
|
800
|
+
DELETE /projects/:id/services/teamcity
|
|
801
|
+
```
|
|
802
|
+
|
|
803
|
+
### Get JetBrains TeamCity CI service settings
|
|
804
|
+
|
|
805
|
+
Get JetBrains TeamCity CI service settings for a project.
|
|
806
|
+
|
|
807
|
+
```
|
|
808
|
+
GET /projects/:id/services/teamcity
|
|
809
|
+
```
|
|
810
|
+
|
|
811
|
+
[jira-doc]: ../user/project/integrations/jira.md
|
|
812
|
+
[old-jira-api]: https://gitlab.com/gitlab-org/gitlab-ce/blob/8-13-stable/doc/api/services.md#jira
|