Skip to main content

GetUserIssuesList

Get a list of all issues responsible for or created by the current user

Query Parameters
  • filter

    filter enumeration: assigned, created. Default value: assigned

  • 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 (needs to start with Bearer and 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

  • ]
GET /issues

Request

Base URL
https://api.atomgit.com
Authorization — header required
filter — query
state — query
sort — query
direction — query
page — query
per_page — query
curl -L -X GET 'https://api.atomgit.com/issues' \
-H 'Accept: application/json'