Linear

by tacticlaunch
Verified

linear_getIssueHistory

Get the history of changes made to an issue

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue (e.g., ABC-123)
limitNoMaximum number of history events to return (default: 10)

Input Schema (JSON Schema)

{ "properties": { "issueId": { "description": "ID or identifier of the issue (e.g., ABC-123)", "type": "string" }, "limit": { "description": "Maximum number of history events to return (default: 10)", "type": "number" } }, "required": [ "issueId" ], "type": "object" }