Linear

by tacticlaunch
Verified

linear_setIssuePriority

Set the priority of an issue

Input Schema

NameRequiredDescriptionDefault
issueIdYesID or identifier of the issue (e.g., ABC-123)
priorityYesPriority level (0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low)

Input Schema (JSON Schema)

{ "properties": { "issueId": { "description": "ID or identifier of the issue (e.g., ABC-123)", "type": "string" }, "priority": { "description": "Priority level (0 = No priority, 1 = Urgent, 2 = High, 3 = Normal, 4 = Low)", "enum": [ 0, 1, 2, 3, 4 ], "type": "number" } }, "required": [ "issueId", "priority" ], "type": "object" }