Skip to main content
GET
/
combined-data
/
forTeam
/
allIssues
/
:teamDataId
Get All Issues for Team
curl --request GET \
  --url https://www.api.baselink.tech/combined-data/forTeam/allIssues/:teamDataId \
  --header 'bearer: <api-key>'
{
  "issues": [
    {}
  ],
  "issues[].id": "<string>",
  "issues[].teamDataId": "<string>",
  "issues[].repoDataId": "<string>",
  "issues[].repoName": "<string>",
  "issues[].issueNumber": 123,
  "issues[].title": "<string>",
  "issues[].body": "<string>",
  "issues[].state": "<string>",
  "issues[].labels": [
    {}
  ],
  "issues[].assignees": [
    {}
  ],
  "issues[].author": "<string>",
  "issues[].createdAt": "<string>",
  "issues[].updatedAt": "<string>",
  "issues[].closedAt": "<string>"
}
Retrieve all issue data for all repositories in a specific team.
issues
array
Array of issue data objects for all repositories in the team.
issues[].id
string
The unique identifier of the issue record.
issues[].teamDataId
string
The ID of the team.
issues[].repoDataId
string
The ID of the repository.
issues[].repoName
string
The name of the repository.
issues[].issueNumber
number
The issue number within the repository.
issues[].title
string
The title of the issue.
issues[].body
string
The body/description of the issue.
issues[].state
string
The current state of the issue (open, closed).
issues[].labels
array
Array of labels associated with the issue.
issues[].assignees
array
Array of users assigned to the issue.
issues[].author
string
The author of the issue.
issues[].createdAt
string
The creation timestamp of the issue.
issues[].updatedAt
string
The last update timestamp of the issue.
issues[].closedAt
string
The timestamp when the issue was closed (if applicable).