Skip to main content
POST
/
api
/
v1
/
projects
/
issues
/
opensource
Get open source issues
curl --request POST \
  --url http://localhost:8080/api/v1/projects/issues/opensource \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "repo_names": [
    "<string>"
  ],
  "from": "2023-11-07T05:31:56Z",
  "to": "2023-11-07T05:31:56Z"
}
'
[
  {
    "html_url": "<string>",
    "title": "<string>",
    "body": "<string>",
    "number": 123,
    "state": "<string>",
    "user": {
      "login": "<string>",
      "avatar_url": "<string>",
      "html_url": "<string>"
    },
    "assignees": [
      {
        "login": "<string>",
        "avatar_url": "<string>",
        "html_url": "<string>"
      }
    ],
    "labels": [
      {
        "name": "<string>"
      }
    ],
    "comments": 123,
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z",
    "pull_request": {
      "url": "<string>",
      "html_url": "<string>"
    }
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
repo_names
string[]
required
from
string<date-time>
to
string<date-time>

Response

List of open source issues

html_url
string
title
string
body
string
number
integer
state
string
user
object
assignees
object[]
labels
object[]
comments
integer
created_at
string<date-time>
updated_at
string<date-time>
pull_request
object