Skip to main content

GetRepoIssuesList

get repo issues list

Path Parameters
  • owner required

    The owner of the repository, generally called "username". The name is not case sensitive.

  • repo required

    repository name, the name is not case sensitive

Query Parameters
  • creator

    Create user uid

  • assignee

    Person in charge uid

  • state

    Status enumeration: open, closed, all. Default value: open

  • sort

    Sorting: created(default), updated

  • direction

    Sorting direction: asc, desc(default)

  • page

    Page num (default is 1)

  • per_page

    Page size (default 30, max 100)

Header Parameters
  • Authorization required

    Private token | app token(ats) (needs to start with Bearer plus a space)

Responses

Success


Schema
  • Array [
  • id string

    id

  • url string

    url

  • number int

    number

  • state string

    state

  • title string

    title

  • body string

    Issue text (use MD format to write content)

  • user object
  • id string

    id

  • login string

    username

  • url string

    user url

  • avatar_url string

    avatar_url

  • html_url string

    html_url

  • type string

    user type - User | Bot

  • assignee object
  • id string

    id

  • login string

    username

  • url string

    user url

  • avatar_url string

    avatar_url

  • html_url string

    html_url

  • type string

    user type - User | Bot

  • locked boolean

    lock status

  • repository_url string

    repository_url

  • html_url string

    issue web url

  • closed_at string

    closed_at

  • created_at string

    created_at

  • updated_at string

    updated_at

  • ]
Loading...