delete_time_spent
Remove time tracking entries from GitLab issues to correct logged hours or delete inaccurate time records.
Instructions
Delete a time spent entry from an issue
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| project_id | Yes | Project ID or URL-encoded path | |
| issue_iid | Yes | The internal ID of the issue | |
| time_log_id | Yes | The ID of the time log to delete |
Input Schema (JSON Schema)
{
"properties": {
"issue_iid": {
"description": "The internal ID of the issue",
"type": "number"
},
"project_id": {
"description": "Project ID or URL-encoded path",
"type": "string"
},
"time_log_id": {
"description": "The ID of the time log to delete",
"type": "number"
}
},
"required": [
"project_id",
"issue_iid",
"time_log_id"
],
"type": "object"
}