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 the id 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."

Servers

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: bug,ui,@high

direction String No

The direction to sort the results by.

Possible values:

  • "desc"
  • "asc"

Default value: "desc"

filter String No

Indicates which sorts of issues to return. assigned means issues assigned to you. created means issues created by you. mentioned means issues mentioning you. subscribed means issues you're subscribed to updates for. all or repos means all issues you can see, regardless of participation or creation.

Possible values:

  • "subscribed"
  • "repos"
  • "created"
  • "assigned"
  • "mentioned"
  • "all"

Default value: "assigned"

sort String No

What to sort results by.

Possible values:

  • "updated"
  • "created"
  • "comments"

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: YYYY-MM-DDTHH:MM:SSZ.

state String No

Indicates the state of the issues to return.

Possible values:

  • "open"
  • "closed"
  • "all"

Default value: "open"

collab Boolean No

How to start integrating

  1. Add HTTP Task to your workflow definition.
  2. 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.
  3. Click Test request to test run your request to the API and see the API's response.