delete-issue-worklog
Remove worklog entries from Plane.so issues to correct time tracking errors or update project records.
Instructions
Delete a worklog entry from an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| issue_id | Yes | ID of the issue containing the worklog | |
| project_id | Yes | ID of the project containing the issue | |
| worklog_id | Yes | ID of the worklog to delete |
Input Schema (JSON Schema)
{
"properties": {
"issue_id": {
"description": "ID of the issue containing the worklog",
"type": "string"
},
"project_id": {
"description": "ID of the project containing the issue",
"type": "string"
},
"worklog_id": {
"description": "ID of the worklog to delete",
"type": "string"
}
},
"required": [
"project_id",
"issue_id",
"worklog_id"
],
"type": "object"
}