Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKyle Bishop <kybishop@gmail.com>2017-06-14 00:02:35 +0300
committerKyle Bishop <kybishop@gmail.com>2017-06-19 01:43:51 +0300
commitef633d24786707672377312eea850ce2eb63f573 (patch)
treea6fe7a8f3707bda53b7ffc0b810fbe0ba52f8ee3 /doc/api/issues.md
parent0037cf634dbcc8045fba9cbc28133cfde07dc97c (diff)
add since and until params to issuables
Diffstat (limited to 'doc/api/issues.md')
-rw-r--r--doc/api/issues.md3
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/api/issues.md b/doc/api/issues.md
index 3f949ca5667..df5666bb7b6 100644
--- a/doc/api/issues.md
+++ b/doc/api/issues.md
@@ -221,7 +221,8 @@ GET /projects/:id/issues?search=issue+title+or+description
| `order_by` | string | no | Return requests ordered by `created_at` or `updated_at` fields. Default is `created_at` |
| `sort` | string | no | Return requests sorted in `asc` or `desc` order. Default is `desc` |
| `search` | string | no | Search project issues against their `title` and `description` |
-
+| `created_after` | datetime | no | Return issues created after the given time (inclusive) |
+| `created_before` | datetime | no | Return issues created before the given time (inclusive) |
```bash
curl --header "PRIVATE-TOKEN: 9koXpg98eAheJpvBs5tK" https://gitlab.example.com/api/v4/projects/4/issues