add_timeline_entry
Track progress by adding updates to a work item or enhancement via a timeline entry using the specified ID and entry details.
Instructions
Add a timeline entry to a work item (issue, ticket) or part (enhancement)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | The DevRev ID of the work item (issue, ticket) or part (enhancement) | |
timeline_entry | Yes | The timeline entry about updates to the work item (issue, ticket) or part (enhancement). |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"description": "The DevRev ID of the work item (issue, ticket) or part (enhancement)",
"type": "string"
},
"timeline_entry": {
"description": "The timeline entry about updates to the work item (issue, ticket) or part (enhancement).",
"type": "string"
}
},
"required": [
"id",
"timeline_entry"
],
"type": "object"
}