diff options
author | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-07 15:07:34 +0000 |
---|---|---|
committer | GitLab Bot <gitlab-bot@gitlab.com> | 2020-01-07 15:07:34 +0000 |
commit | b4028d450087e97f26d4baa23e08396bcbabe3e0 (patch) | |
tree | f84a5cbb29e43bab0ba58db1bc5619112c8c482e /doc/api/services.md | |
parent | 05f1d5d9813332bdd456cb358517e56168a24224 (diff) | |
download | gitlab-ce-b4028d450087e97f26d4baa23e08396bcbabe3e0.tar.gz |
Add latest changes from gitlab-org/gitlab@master
Diffstat (limited to 'doc/api/services.md')
-rw-r--r-- | doc/api/services.md | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/doc/api/services.md b/doc/api/services.md index f7817040726..2b41b532f1d 100644 --- a/doc/api/services.md +++ b/doc/api/services.md @@ -2,6 +2,59 @@ >**Note:** This API requires an access token with Maintainer or Owner permissions +## List all active services + +> [Introduced](https://gitlab.com/gitlab-org/gitlab/merge_requests/21330) in GitLab 12.7. + +Get a list of all active project services. + +``` +GET /projects/:id/services +``` + +Example response: + +```json +[ + { + "id": 75, + "title": "Jenkins CI", + "created_at": "2019-11-20T11:20:25.297Z", + "updated_at": "2019-11-20T12:24:37.498Z", + "active": true, + "commit_events": true, + "push_events": true, + "issues_events": true, + "confidential_issues_events": true, + "merge_requests_events": true, + "tag_push_events": false, + "note_events": true, + "confidential_note_events": true, + "pipeline_events": true, + "wiki_page_events": true, + "job_events": true + } + { + "id": 76, + "title": "Alerts endpoint", + "created_at": "2019-11-20T11:20:25.297Z", + "updated_at": "2019-11-20T12:24:37.498Z", + "active": true, + "commit_events": true, + "push_events": true, + "issues_events": true, + "confidential_issues_events": true, + "merge_requests_events": true, + "tag_push_events": true, + "note_events": true, + "confidential_note_events": true, + "pipeline_events": true, + "wiki_page_events": true, + "job_events": true + } +] +``` + ## Asana Asana - Teamwork without email |