jira_get_my_issues
Retrieve your assigned Jira issues sorted by most recent updates. Supports pagination and field selection to access specific issue details.
Instructions
Retrieves issues assigned to current user, sorted by most recently updated first. Supports pagination and field selection.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
expand | No | Additional details to include for each issue | |
fields | No | Specific fields to retrieve for each issue | |
maxResults | No | Maximum number of results to return | |
startAt | No | Index of first result to return (for pagination) |
Input Schema (JSON Schema)
{
"properties": {
"expand": {
"default": [],
"description": "Additional details to include for each issue",
"items": {
"type": "string"
},
"type": "array"
},
"fields": {
"description": "Specific fields to retrieve for each issue",
"items": {
"type": "string"
},
"type": "array"
},
"maxResults": {
"default": 50,
"description": "Maximum number of results to return",
"maximum": 100,
"minimum": 1,
"type": "number"
},
"startAt": {
"default": 0,
"description": "Index of first result to return (for pagination)",
"minimum": 0,
"type": "number"
}
},
"required": [],
"type": "object"
}