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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
3c3eca81
Commit
3c3eca81
authored
Jun 22, 2020
by
John Hope
Committed by
Marcin Sedlak-Jakubowski
Jun 22, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Improve docs on issues API authentication
parent
d64f6011
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
2 deletions
+21
-2
doc/api/issues.md
doc/api/issues.md
+21
-2
No files found.
doc/api/issues.md
View file @
3c3eca81
...
...
@@ -6,8 +6,6 @@ info: To determine the technical writer assigned to the Stage/Group associated w
# Issues API
Every API call to issues must be authenticated.
If a user is not a member of a project and the project is private, a
`GET`
request on that project will result in a
`404`
status code.
...
...
@@ -188,6 +186,9 @@ the `weight` parameter:
Get a list of a group's issues.
If the group is private, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /groups/:id/issues
GET /groups/:id/issues?state=opened
...
...
@@ -343,6 +344,9 @@ the `weight` parameter:
Get a list of a project's issues.
If the project is private, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues
GET /projects/:id/issues?state=opened
...
...
@@ -504,6 +508,9 @@ the `weight` parameter:
Get a single project issue.
If the project is private or the issue is confidential, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues/:issue_iid
```
...
...
@@ -1413,6 +1420,9 @@ Example response:
## Get time tracking stats
If the project is private or the issue is confidential, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues/:issue_iid/time_stats
```
...
...
@@ -1441,6 +1451,9 @@ Example response:
Get all the merge requests that are related to the issue.
If the project is private or the issue is confidential, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues/:issue_id/related_merge_requests
```
...
...
@@ -1597,6 +1610,9 @@ Example response:
Get all the merge requests that will close issue when merged.
If the project is private or the issue is confidential, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues/:issue_iid/closed_by
```
...
...
@@ -1670,6 +1686,9 @@ Example response:
## Participants on issues
If the project is private or the issue is confidential, credentials will need to be provided for authorization.
The preferred way to do this, is by using
[
personal access tokens
](
../user/profile/personal_access_tokens.md
)
.
```
plaintext
GET /projects/:id/issues/:issue_iid/participants
```
...
...
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