diff options
author | jubianchi <contact@jubianchi.fr> | 2015-01-17 23:45:39 +0100 |
---|---|---|
committer | jubianchi <contact@jubianchi.fr> | 2015-05-02 10:44:52 +0200 |
commit | 2c544d43c832e816614a9bef35e1899f34b4a53d (patch) | |
tree | 62251a13a44a9e6aa3e370a41e418a2b0018dd78 /doc/api/issues.md | |
parent | 76f7bdccc09fe1290cee330480c1a2640e3b20d5 (diff) | |
download | gitlab-ce-2c544d43c832e816614a9bef35e1899f34b4a53d.tar.gz |
Query issues, merge requests and milestones with their IID through API
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r-- | doc/api/issues.md | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md index a7dd8b74c35..d407bc35d79 100644 --- a/doc/api/issues.md +++ b/doc/api/issues.md @@ -99,11 +99,13 @@ GET /projects/:id/issues?labels=foo,bar GET /projects/:id/issues?labels=foo,bar&state=opened GET /projects/:id/issues?milestone=1.0.0 GET /projects/:id/issues?milestone=1.0.0&state=opened +GET /projects/:id/issues?iid=42 ``` Parameters: - `id` (required) - The ID of a project +- `iid` (optional) - Return the issue having the given `iid` - `state` (optional) - Return `all` issues or just those that are `opened` or `closed` - `labels` (optional) - Comma-separated list of label names - `milestone` (optional) - Milestone title |