Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Boxiang Sun
gitlab-ce
Commits
901976d9
Commit
901976d9
authored
Mar 14, 2014
by
Christian Höltje
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Switched line endings to LF for system_hooks.md
It was checked in with Windows style line endings.
parent
17a9ecf8
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
70 additions
and
70 deletions
+70
-70
doc/api/system_hooks.md
doc/api/system_hooks.md
+70
-70
No files found.
doc/api/system_hooks.md
View file @
901976d9
All methods require admin authorization.
All methods require admin authorization.
The url endpoint of the system hooks can be configured in
[
the admin area under hooks
](
/admin/hooks
)
.
The url endpoint of the system hooks can be configured in
[
the admin area under hooks
](
/admin/hooks
)
.
## List system hooks
## List system hooks
Get list of system hooks
Get list of system hooks
```
```
GET /hooks
GET /hooks
```
```
Parameters:
Parameters:
+
**none**
+
**none**
```
json
```
json
[
[
{
{
"id"
:
3
,
"id"
:
3
,
"url"
:
"http://example.com/hook"
,
"url"
:
"http://example.com/hook"
,
"created_at"
:
"2013-10-02T10:15:31Z"
"created_at"
:
"2013-10-02T10:15:31Z"
}
}
]
]
```
```
## Add new system hook hook
## Add new system hook hook
```
```
POST /hooks
POST /hooks
```
```
Parameters:
Parameters:
+
`url`
(required) - The hook URL
+
`url`
(required) - The hook URL
## Test system hook
## Test system hook
```
```
GET /hooks/:id
GET /hooks/:id
```
```
Parameters:
Parameters:
+
`id`
(required) - The ID of hook
+
`id`
(required) - The ID of hook
```
json
```
json
{
{
"event_name"
:
"project_create"
,
"event_name"
:
"project_create"
,
"name"
:
"Ruby"
,
"name"
:
"Ruby"
,
"path"
:
"ruby"
,
"path"
:
"ruby"
,
"project_id"
:
1
,
"project_id"
:
1
,
"owner_name"
:
"Someone"
,
"owner_name"
:
"Someone"
,
"owner_email"
:
"example@gitlabhq.com"
"owner_email"
:
"example@gitlabhq.com"
}
}
```
```
## Delete system hook
## Delete system hook
Deletes a system hook. This is an idempotent API function and returns
`200 Ok`
even if the hook
Deletes a system hook. This is an idempotent API function and returns
`200 Ok`
even if the hook
is not available. If the hook is deleted it is also returned as JSON.
is not available. If the hook is deleted it is also returned as JSON.
```
```
DELETE /hooks/:id
DELETE /hooks/:id
```
```
Parameters:
Parameters:
+
`id`
(required) - The ID of hook
+
`id`
(required) - The ID of hook
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment