get_worklogs
Retrieve time tracking worklogs from JIRA Tempo for a specified date range, optionally filtered by issue key, to review logged hours and activities.
Instructions
Retrieve worklogs for authenticated user and date range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
endDate | No | End date in YYYY-MM-DD format (optional, defaults to startDate) | |
issueKey | No | Optional filter by specific issue key (e.g., PROJ-1234) | |
startDate | Yes | Start date in YYYY-MM-DD format |
Input Schema (JSON Schema)
{
"properties": {
"endDate": {
"description": "End date in YYYY-MM-DD format (optional, defaults to startDate)",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"issueKey": {
"description": "Optional filter by specific issue key (e.g., PROJ-1234)",
"type": "string"
},
"startDate": {
"description": "Start date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
}
},
"required": [
"startDate"
],
"type": "object"
}