jira_get_worklogs
Retrieve all worklog entries for a specific JIRA issue, enabling tracking of time spent, filtering by date range, and managing task data efficiently within the workflow.
Instructions
Get all worklog entries for a specific issue
Input Schema
Name | Required | Description | Default |
---|---|---|---|
issueKey | Yes | ||
maxResults | No | ||
startAt | No | ||
startedAfter | No | ||
startedBefore | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"issueKey": {
"pattern": "^[A-Z]+-\\d+$",
"type": "string"
},
"maxResults": {
"default": 1000,
"maximum": 1000,
"minimum": 1,
"type": "integer"
},
"startAt": {
"default": 0,
"minimum": 0,
"type": "integer"
},
"startedAfter": {
"format": "date-time",
"type": "string"
},
"startedBefore": {
"format": "date-time",
"type": "string"
}
},
"required": [
"issueKey"
],
"type": "object"
}