backlog_get_issues
Retrieve and filter Backlog issues by project, assignee, status, and more using the Backlog Issues API. Supports pagination, sorting, and date-based searches.
Instructions
Performs list issue get using the Backlog Issues API. Supports pagination, content filtering. Maximum 20 results per request, with offset for pagination.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
assigneeId | No | Assignee ids | |
count | No | Number of results (1-100, default 20) | |
createdSince | No | Start date of created date (YYYY-MM-DD format) | |
createdUntil | No | End date of created date (YYYY-MM-DD format) | |
keyword | No | Keyword for searching | |
offset | No | Offset for pagination | |
order | No | Sort order | desc |
priorityId | No | Priority ids | |
projectId | No | Project ids | |
sort | No | Attribute name for sorting | |
statusId | No | Status ids |
Input Schema (JSON Schema)
{
"properties": {
"assigneeId": {
"description": "Assignee ids",
"items": {
"type": "number"
},
"type": "array"
},
"count": {
"default": 20,
"description": "Number of results (1-100, default 20)",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"createdSince": {
"description": "Start date of created date (YYYY-MM-DD format)",
"type": "string"
},
"createdUntil": {
"description": "End date of created date (YYYY-MM-DD format)",
"type": "string"
},
"keyword": {
"description": "Keyword for searching",
"type": "string"
},
"offset": {
"default": 0,
"description": "Offset for pagination",
"type": "number"
},
"order": {
"default": "desc",
"description": "Sort order",
"enum": [
"asc",
"desc"
],
"type": "string"
},
"priorityId": {
"description": "Priority ids",
"items": {
"type": "number"
},
"type": "array"
},
"projectId": {
"description": "Project ids",
"items": {
"type": "number"
},
"type": "array"
},
"sort": {
"description": "Attribute name for sorting",
"enum": [
"issueType",
"category",
"version",
"milestone",
"summary",
"status",
"priority",
"attachment",
"sharedFile",
"created",
"createdUser",
"updated",
"updatedUser",
"assignee",
"startDate",
"dueDate",
"estimatedHours",
"actualHours",
"childIssue"
],
"type": "string"
},
"statusId": {
"description": "Status ids",
"items": {
"type": "number"
},
"type": "array"
}
},
"type": "object"
}