GET /issues
List issues assigned to the authenticated user across all visible repositories including owned repositories, member
repositories, and organization repositories. You can use the filter
query parameter to fetch issues that are not
necessarily assigned to you.
[!NOTE] GitHub's REST API considers every pull request an issue, but not every issue is a pull request. For this reason, "Issues" endpoints may return both issues and pull requests in the response. You can identify pull requests by the
pull_request
key. Be aware that theid
of a pull request returned from "Issues" endpoints will be an issue id. To find out the pull request id, use the "List pull requests" endpoint.
This endpoint supports the following custom media types. For more information, see "Media types."
application/vnd.github.raw+json
: Returns the raw markdown body. Response will includebody
. This is the default if you do not pass any specific media type.application/vnd.github.text+json
: Returns a text only representation of the markdown body. Response will includebody_text
.application/vnd.github.html+json
: Returns HTML rendered from the body's markdown. Response will includebody_html
.application/vnd.github.full+json
: Returns raw, text, and HTML representations. Response will includebody
,body_text
, andbody_html
.
Servers
- https://api.github.com
Query parameters
Name | Type | Required | Description |
---|---|---|---|
orgs |
Boolean | No | |
page |
Integer | No |
The page number of the results to fetch. For more information, see "Using pagination in the REST API." Default value: 1 |
pulls |
Boolean | No | |
labels |
String | No |
A list of comma separated label names. Example: |
direction |
String | No |
The direction to sort the results by. Possible values:
Default value: "desc" |
filter |
String | No |
Indicates which sorts of issues to return. Possible values:
Default value: "assigned" |
sort |
String | No |
What to sort results by. Possible values:
Default value: "created" |
per_page |
Integer | No |
The number of results per page (max 100). For more information, see "Using pagination in the REST API." Default value: 30 |
owned |
Boolean | No | |
since |
String | No |
Only show results that were last updated after the given time. This is a timestamp in ISO 8601 format: |
state |
String | No |
Indicates the state of the issues to return. Possible values:
Default value: "open" |
collab |
Boolean | No |
How to start integrating
- Add HTTP Task to your workflow definition.
- Search for the API you want to integrate with and click on the name.
- This loads the API reference documentation and prepares the Http request settings.
- Click Test request to test run your request to the API and see the API's response.