bulk_post_worklogs
Create multiple time tracking entries in JIRA Tempo from structured data to log hours worked on various issues efficiently.
Instructions
Create multiple worklog entries from a structured format
Input Schema
Name | Required | Description | Default |
---|---|---|---|
billable | No | Whether the time is billable for all entries (default: true) | |
worklogs | Yes | Array of worklog entries to create |
Input Schema (JSON Schema)
{
"properties": {
"billable": {
"description": "Whether the time is billable for all entries (default: true)",
"type": "boolean"
},
"worklogs": {
"description": "Array of worklog entries to create",
"items": {
"properties": {
"date": {
"description": "Date in YYYY-MM-DD format",
"pattern": "^\\d{4}-\\d{2}-\\d{2}$",
"type": "string"
},
"description": {
"description": "Work description (optional)",
"type": "string"
},
"hours": {
"description": "Hours worked (decimal)",
"maximum": 24,
"minimum": 0.1,
"type": "number"
},
"issueKey": {
"description": "JIRA issue key (e.g., PROJ-1234)",
"type": "string"
}
},
"required": [
"issueKey",
"hours",
"date"
],
"type": "object"
},
"type": "array"
}
},
"required": [
"worklogs"
],
"type": "object"
}