BigW Consortium Gitlab
Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
gitlab-ce
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Forest Godfrey
gitlab-ce
Commits
b0a77a22
Commit
b0a77a22
authored
Jan 07, 2016
by
Tomasz Maczukin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update ./doc/api
parent
86756646
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
95 additions
and
0 deletions
+95
-0
README.md
doc/api/README.md
+1
-0
triggers.md
doc/api/triggers.md
+94
-0
No files found.
doc/api/README.md
View file @
b0a77a22
...
...
@@ -23,6 +23,7 @@
-
[
Namespaces
](
namespaces.md
)
-
[
Settings
](
settings.md
)
-
[
Keys
](
keys.md
)
-
[
Triggers
](
triggers.md
)
## Clients
...
...
doc/api/triggers.md
0 → 100644
View file @
b0a77a22
# Triggers
## List project triggers
Get a list of project triggers
```
GET /projects/:id/triggers
```
Parameters:
-
`id`
(required) - The ID of a project
```
json
[
{
"created_at"
:
"2015-12-23T16:24:34.716Z"
,
"deleted_at"
:
null
,
"id"
:
1
,
"last_used"
:
"2016-01-04T15:41:21.986Z"
,
"token"
:
"fbdb730c2fbdb095a0862dbd8ab88b"
,
"updated_at"
:
"2015-12-23T16:24:34.716Z"
},
{
"created_at"
:
"2015-12-23T16:25:56.760Z"
,
"deleted_at"
:
null
,
"id"
:
2
,
"last_used"
:
null
,
"token"
:
"7b9148c158980bbd9bcea92c17522d"
,
"updated_at"
:
"2015-12-23T16:25:56.760Z"
}
]
```
## Get trigger details
Get details of trigger of a project
```
GET /projects/:id/triggers/:trigger_id
```
Parameters:
-
`id`
(required) - The ID of a project
-
`trigger_id`
(required) - The ID of a trigger
```
json
{
"created_at"
:
"2015-12-23T16:25:56.760Z"
,
"deleted_at"
:
null
,
"id"
:
2
,
"last_used"
:
null
,
"token"
:
"7b9148c158980bbd9bcea92c17522d"
,
"updated_at"
:
"2015-12-23T16:25:56.760Z"
}
```
## Create a project trigger
Create a trigger for a project
```
POST /projects/:id/triggers
```
Parameters:
-
`id`
(required) - The ID of a project
```
json
{
"created_at"
:
"2016-01-07T09:53:58.235Z"
,
"deleted_at"
:
null
,
"id"
:
5
,
"last_used"
:
null
,
"token"
:
"6d056f63e50fe6f8c5f8f4aa10edb7"
,
"updated_at"
:
"2016-01-07T09:53:58.235Z"
}
```
## Remove a project trigger
Remove a trigger of a project
```
DELETE /projects/:id/triggers/:trigger_id
```
Parameters:
-
`id`
(required) - The ID of a project
-
`trigger_id`
(required) - The ID of a trigger
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