list-issue-worklogs
Retrieve all time tracking logs for a specific issue in a Plane project to monitor work progress and time allocation.
Instructions
List all time logs for a specific issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue to get worklogs from | |
| project_id | Yes | ID of the project containing the issue |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue to get worklogs from",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
}
},
"required": [
"project_id",
"issue_id"
],
"type": "object"
}